This tutorial helps you run cellfindR on your dataset. Please make sure you have Seurat Installed and that you run all the functions that are included in the CellFindR.R script file.
Now, please try and load the data, if you have a Seurat object already processed, or if you need a fresh 10x install use the load_data function. For this case, I will be demoing a mouse TM epithelium dataset
library(Seurat)
library(dplyr)
library(stringr)
library(ggplot2)
library(RColorBrewer)
## load data from processed RDS
tenx <- readRDS(file = "TM_epi.rds")
file_loc <- '/Users/kyu/Desktop/CellFindR_2.0/TM_Epi/'
proj_name <- 'TM'
setwd(file_loc)
DimPlot(tenx, reduction = "umap", label = TRUE)
## Warning: Using `as.character()` on a quosure is deprecated as of rlang 0.3.0.
## Please use `as_label()` or `as_name()` instead.
## This warning is displayed once per session.
## set initial groups we need to first set the initial groups to do the first layer of analysis, we can use find_res function for cellfindR or you can set a manual seurat resolution depending on what your data looks like.
# cluster first layer
#manual set res for first layer
res <- 0.6
#or find a resolution
#res <- find_res(tenx, initial_res = 0.1, jump = 0.1)
tenx <- FindClusters(tenx, resolution = res)
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 918
## Number of edges: 26215
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.8373
## Number of communities: 10
## Elapsed time: 0 seconds
## Warning: Adding a command log without an assay associated with it
DimPlot(tenx, reduction = "umap", label = TRUE)
we create an output folder for the cellfindr outputs, creating a new directory. Then we can run the file to create a new seurat object with the cellfindr labels.
# create output folder
output_folder <- paste(file_loc, '/', Sys.time(), sep = '')
dir.create(output_folder)
#get subclusters based on initial clustering
tenx_labeled <- sub_clustering(tenx, output_folder, proj_name)
## [1] "Running subclustering"
## [1] "clustering 0"
## Computing nearest neighbor graph
## Computing SNN
## Warning: The default method for RunUMAP has changed from calling Python UMAP via reticulate to the R-native UWOT using the cosine metric
## To use Python UMAP via reticulate, set umap.method to 'umap-learn' and metric to 'correlation'
## This message will be shown once per session
## 11:06:44 UMAP embedding parameters a = 0.9922 b = 1.112
## 11:06:44 Read 219 rows and found 20 numeric columns
## 11:06:44 Using Annoy for neighbor search, n_neighbors = 10
## 11:06:44 Building Annoy index with metric = cosine, n_trees = 50
## 0% 10 20 30 40 50 60 70 80 90 100%
## [----|----|----|----|----|----|----|----|----|----|
## **************************************************|
## 11:06:44 Writing NN index file to temp file /var/folders/hw/8pgn_gss7tj01n1jg_zl_sx00000gp/T//RtmpbYWP8K/file1bca250afdad
## 11:06:44 Searching Annoy index using 1 thread, search_k = 1000
## 11:06:44 Annoy recall = 100%
## 11:06:44 Commencing smooth kNN distance calibration using 1 thread
## 11:06:45 Initializing from normalized Laplacian + noise
## 11:06:45 Commencing optimization for 500 epochs, with 3052 positive edges
## 11:06:45 Optimization finished
## [1] "Trying 0.1"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 219
## Number of edges: 8518
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.9000
## Number of communities: 1
## Elapsed time: 0 seconds
## [1] "noclusterfound 0.1"
## [1] "Trying 0.2"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 219
## Number of edges: 8518
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.8021
## Number of communities: 2
## Elapsed time: 0 seconds
## [1] -0.8951657
## [1] -0.5986318
## [1] "broke 0.2"
## [1] 0.1
## Warning: The following arguments are not used: pc.use
## Warning: The following arguments are not used: pc.use
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 219
## Number of edges: 8518
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.9000
## Number of communities: 1
## Elapsed time: 0 seconds
## [1] "clustering 1"
## Computing nearest neighbor graph
## Computing SNN
## 11:06:48 UMAP embedding parameters a = 0.9922 b = 1.112
## 11:06:48 Read 160 rows and found 20 numeric columns
## 11:06:48 Using Annoy for neighbor search, n_neighbors = 10
## 11:06:48 Building Annoy index with metric = cosine, n_trees = 50
## 0% 10 20 30 40 50 60 70 80 90 100%
## [----|----|----|----|----|----|----|----|----|----|
## **************************************************|
## 11:06:48 Writing NN index file to temp file /var/folders/hw/8pgn_gss7tj01n1jg_zl_sx00000gp/T//RtmpbYWP8K/file1bca74947bda
## 11:06:48 Searching Annoy index using 1 thread, search_k = 1000
## 11:06:48 Annoy recall = 100%
## 11:06:48 Commencing smooth kNN distance calibration using 1 thread
## 11:06:48 Initializing from normalized Laplacian + noise
## 11:06:48 Commencing optimization for 500 epochs, with 1962 positive edges
## 11:06:49 Optimization finished
## [1] "Trying 0.1"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 160
## Number of edges: 4541
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.9000
## Number of communities: 1
## Elapsed time: 0 seconds
## [1] "noclusterfound 0.1"
## [1] "Trying 0.2"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 160
## Number of edges: 4541
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.8006
## Number of communities: 2
## Elapsed time: 0 seconds
## [1] 0.4694129
## [1] 0.8220015
## [1] "ok 0.2"
## [1] "Trying 0.3"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 160
## Number of edges: 4541
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.7493
## Number of communities: 2
## Elapsed time: 0 seconds
## [1] 0.4694129
## [1] 0.8220015
## [1] "ok 0.3"
## [1] "Trying 0.4"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 160
## Number of edges: 4541
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.6980
## Number of communities: 2
## Elapsed time: 0 seconds
## [1] 0.4694129
## [1] 0.8220015
## [1] "ok 0.4"
## [1] "Trying 0.5"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 160
## Number of edges: 4541
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.6552
## Number of communities: 3
## Elapsed time: 0 seconds
## [1] 0.8334333
## [1] NA
## [1] 0.9340842
## [1] "ok 0.5"
## [1] "Trying 0.6"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 160
## Number of edges: 4541
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.6208
## Number of communities: 3
## Elapsed time: 0 seconds
## [1] 0.8334333
## [1] NA
## [1] 0.9340842
## [1] "ok 0.6"
## [1] "Trying 0.7"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 160
## Number of edges: 4541
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.5864
## Number of communities: 3
## Elapsed time: 0 seconds
## [1] 0.8334333
## [1] NA
## [1] 0.9340842
## [1] "ok 0.7"
## [1] "Trying 0.8"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 160
## Number of edges: 4541
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.5521
## Number of communities: 3
## Elapsed time: 0 seconds
## [1] 0.8334333
## [1] NA
## [1] 0.9340842
## [1] "ok 0.8"
## [1] "Trying 0.9"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 160
## Number of edges: 4541
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.5177
## Number of communities: 3
## Elapsed time: 0 seconds
## [1] 0.8334333
## [1] NA
## [1] 0.9340842
## [1] "ok 0.9"
## [1] "Trying 1"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 160
## Number of edges: 4541
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.4914
## Number of communities: 4
## Elapsed time: 0 seconds
## [1] 0.6570137
## [1] 0.9340842
## [1] 0.6379868
## [1] "broke 1"
## [1] 0.9
## Warning: The following arguments are not used: pc.use
## Warning: The following arguments are not used: pc.use
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 160
## Number of edges: 4541
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.5177
## Number of communities: 3
## Elapsed time: 0 seconds
## [1] "/Users/kyu/Desktop/CellFindR_2.0/TM_Epi//2020-04-14 11:06:43/1"
## Saving 7 x 5 in image
## Calculating cluster 0
## Calculating cluster 1
## Calculating cluster 2
## [1] "getting matrix"
## Warning: 'use.scale' is a deprecated argument, please use the 'slot' argument
## instead
## Finished averaging RNA for cluster 0
## Finished averaging RNA for cluster 1
## Finished averaging RNA for cluster 2
## [1] "0"
## [1] "1"
## [1] "2"
## [1] "0"
## [1] "1"
## [1] "2"
## [1] "clustering 1.0"
## Computing nearest neighbor graph
## Computing SNN
## 11:08:12 UMAP embedding parameters a = 0.9922 b = 1.112
## 11:08:12 Read 69 rows and found 20 numeric columns
## 11:08:12 Using Annoy for neighbor search, n_neighbors = 10
## 11:08:12 Building Annoy index with metric = cosine, n_trees = 50
## 0% 10 20 30 40 50 60 70 80 90 100%
## [----|----|----|----|----|----|----|----|----|----|
## **************************************************|
## 11:08:12 Writing NN index file to temp file /var/folders/hw/8pgn_gss7tj01n1jg_zl_sx00000gp/T//RtmpbYWP8K/file1bca70e75869
## 11:08:12 Searching Annoy index using 1 thread, search_k = 1000
## 11:08:12 Annoy recall = 100%
## 11:08:12 Commencing smooth kNN distance calibration using 1 thread
## 11:08:13 Initializing from normalized Laplacian + noise
## 11:08:13 Commencing optimization for 500 epochs, with 822 positive edges
## 11:08:13 Optimization finished
## [1] "Trying 0.1"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 69
## Number of edges: 1943
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.9000
## Number of communities: 1
## Elapsed time: 0 seconds
## [1] "noclusterfound 0.1"
## [1] "Trying 0.2"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 69
## Number of edges: 1943
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.8000
## Number of communities: 1
## Elapsed time: 0 seconds
## [1] "noclusterfound 0.2"
## [1] "Trying 0.3"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 69
## Number of edges: 1943
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.7000
## Number of communities: 1
## Elapsed time: 0 seconds
## [1] "noclusterfound 0.3"
## [1] "Trying 0.4"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 69
## Number of edges: 1943
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.6000
## Number of communities: 1
## Elapsed time: 0 seconds
## [1] "noclusterfound 0.4"
## [1] "Trying 0.5"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 69
## Number of edges: 1943
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.5000
## Number of communities: 1
## Elapsed time: 0 seconds
## [1] "noclusterfound 0.5"
## [1] "Trying 0.6"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 69
## Number of edges: 1943
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.4105
## Number of communities: 2
## Elapsed time: 0 seconds
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.73101115192823, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.73101115192823, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.53097102862338, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 3.91292089853599, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.22572523414202, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.89895103851091, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.36049713199956, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.73101115192823, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.89895103851091, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.59453013627182, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.47161094278722, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.73101115192823, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.81850243568804, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.0427009719033, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.38037754427827, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.70398066865461, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.15486596924196, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.15486596924196, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.81850243568804, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.89895103851091, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.0427009719033, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.36049713199956, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.22572523414202, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.10750306545264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.73101115192823, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.97340678971251, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.81850243568804, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.15486596924196, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.97340678971251, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.73101115192823, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.42703432451869, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.10750306545264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.73101115192823, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.81850243568804, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.73101115192823, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.89895103851091, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.89895103851091, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.73101115192823, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.0427009719033, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.0427009719033, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.47161094278722, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.97340678971251, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.38037754427827, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.73101115192823, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.81850243568804, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.0427009719033, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.89895103851091, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.36049713199956, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.16836019348413, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.15486596924196, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.73101115192823, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.73101115192823, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.97340678971251, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 4.06453946099473, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.36049713199956, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.33143691743583, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.10750306545264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.59453013627182, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.38037754427827, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 3.24962182653586, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.81850243568804, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.15486596924196, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.36049713199956, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.89895103851091, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.16836019348413, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.15486596924196, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.16836019348413, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.73101115192823, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.97340678971251, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.15486596924196, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.73101115192823, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.53097102862338, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.73101115192823, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.73101115192823, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.81850243568804, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.22572523414202, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.5552122598989, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.97340678971251, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.81850243568804, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.53097102862338, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.73101115192823, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.16836019348413, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.81850243568804, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.97340678971251, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.89895103851091, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.73101115192823, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.97340678971251, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.0427009719033, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.16836019348413, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.73101115192823, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 2.53310321104653, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.63236042178192, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.97340678971251, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.15486596924196, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.97340678971251, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.36049713199956, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.97478650473634, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.73101115192823, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.81850243568804, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.16836019348413, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.36049713199956, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.89895103851091, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.27997729585591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## [1] 0.8410227
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 1.24162561788252, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.68837084092945, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.74515541821422, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 2.58822841619865, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 1.24162561788252, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 1.24162561788252, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.65901106685616, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 3.37965870491184, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.03044928675679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.82446390120489, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 1.24162561788252, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 1.24162561788252, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 1.24162561788252, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 1.24162561788252, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.82446390120489, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 1.24162561788252, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.65901106685616, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.75066601024045, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 1.24162561788252, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 1.24162561788252, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 1.24162561788252, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.65901106685616, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 1.24162561788252, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.65901106685616, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.94242682588271, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 3.16499387665881, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 1.24162561788252, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 1.77875377404731, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.03044928675679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.5131943767162, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.8093070159704, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.89794210856257, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.86469890619979, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.65901106685616, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.74515541821422, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.09065186812555, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.14743498531117, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.34694478164919, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.89794210856257, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 2.12629013420922, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.09065186812555, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.96638886290044, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.74515541821422, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 1.24162561788252, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 1.24162561788252, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.82446390120489, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.39116925406429, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.74515541821422, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.25215717323341, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 1.77875377404731, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.82446390120489, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 1.24162561788252, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 1.77875377404731, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.74515541821422, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.89794210856257, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.74515541821422, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.74515541821422, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.89794210856257, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 1.24162561788252, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 1.77875377404731, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.09065186812555, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 1.77875377404731, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.82446390120489, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.65901106685616, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.89794210856257, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.74515541821422, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 1.24162561788252, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.20116629540761, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.30067364359064, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 1.77875377404731, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 1.24162561788252, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.89794210856257, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 1.77875377404731, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.74515541821422, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.65901106685616, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 2.58822841619865, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 1.24162561788252, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 1.24162561788252, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.74515541821422, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 1.24162561788252, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 1.24162561788252, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 1.24162561788252, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.96638886290044, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.65901106685616, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 1.24162561788252, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.74515541821422, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.82446390120489, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.74515541821422, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 1.77875377404731, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 4.37901632432931, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 1.24162561788252, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 1.24162561788252, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.65901106685616, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 1.24162561788252, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.74515541821422, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 2.38369881102025, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 1.24162561788252, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 1.24162561788252, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.82446390120489, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.09065186812555, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.96638886290044, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.82446390120489, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.74515541821422, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.47415070681247, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.39116925406429, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.74515541821422, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.65901106685616, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.55077074781196, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.43352047378132, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.09065186812555, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 1.77875377404731, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 1.24162561788252, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 1.24162561788252, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 2.12629013420922, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 1.24162561788252, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 1.24162561788252, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.65901106685616, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.5131943767162, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.65901106685616, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.89794210856257, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 1.24162561788252, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 1.24162561788252, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.89794210856257, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 1.24162561788252, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.96638886290044, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.82446390120489, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, CAGCGACTCAACACAC =
## 0, : cannot compute exact p-value with ties
## [1] -0.6125962
## [1] "ok 0.6"
## [1] "Trying 0.7"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 69
## Number of edges: 1943
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.3497
## Number of communities: 2
## Elapsed time: 0 seconds
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.73101115192823, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.53097102862338, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 3.91292089853599, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.22572523414202, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.89895103851091, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.36049713199956, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.73101115192823, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.89895103851091, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.59453013627182, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.47161094278722, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.73101115192823, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.81850243568804, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.81850243568804, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.0427009719033, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.38037754427827, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.70398066865461, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.15486596924196, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.15486596924196, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.81850243568804, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.89895103851091, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.0427009719033, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.36049713199956, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.22572523414202, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.10750306545264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.73101115192823, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.97340678971251, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.81850243568804, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.15486596924196, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.97340678971251, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.73101115192823, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.42703432451869, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.10750306545264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.73101115192823, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.81850243568804, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.73101115192823, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.89895103851091, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.89895103851091, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.73101115192823, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.0427009719033, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.0427009719033, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.47161094278722, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.97340678971251, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.38037754427827, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.73101115192823, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.81850243568804, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.15486596924196, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.0427009719033, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.89895103851091, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.36049713199956, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.16836019348413, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.15486596924196, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.73101115192823, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.73101115192823, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.97340678971251, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 4.06453946099473, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.33143691743583, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.10750306545264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.59453013627182, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.38037754427827, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 3.24962182653586, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.81850243568804, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.15486596924196, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.36049713199956, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.89895103851091, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.16836019348413, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.10750306545264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.16836019348413, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.73101115192823, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.97340678971251, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.15486596924196, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.73101115192823, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.53097102862338, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.73101115192823, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.81850243568804, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.22572523414202, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.36049713199956, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.5552122598989, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.97340678971251, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.81850243568804, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.73101115192823, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.16836019348413, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.81850243568804, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.97340678971251, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.89895103851091, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.15486596924196, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.73101115192823, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.97340678971251, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.0427009719033, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.16836019348413, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.73101115192823, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 2.53310321104653, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.63236042178192, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.97340678971251, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.15486596924196, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.0427009719033, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.67657232231181, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.97340678971251, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.36049713199956, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.73101115192823, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.81850243568804, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.16836019348413, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.36049713199956, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.81850243568804, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.81850243568804, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.89895103851091, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.27997729585591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## [1] 0.8659292
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.68837084092945, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.74515541821422, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.13443234134864, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.65901106685616, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 3.37965870491184, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.03044928675679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.82446390120489, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.82446390120489, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.65901106685616, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.75066601024045, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.89794210856257, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.65901106685616, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.65901106685616, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.94242682588271, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 3.16499387665881, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.13443234134864, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.03044928675679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.5131943767162, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.8093070159704, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.89794210856257, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.86469890619979, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.65901106685616, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.74515541821422, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.33829666868655, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.09065186812555, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.65901106685616, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.14743498531117, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.34694478164919, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.89794210856257, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.13443234134864, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.13443234134864, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.09065186812555, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.96638886290044, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.74515541821422, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.82446390120489, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.39116925406429, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.33829666868655, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.25215717323341, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.82446390120489, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.74515541821422, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.89794210856257, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.74515541821422, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.33829666868655, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.74515541821422, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.89794210856257, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.09065186812555, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.82446390120489, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.65901106685616, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.89794210856257, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.74515541821422, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.20116629540761, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.30067364359064, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.13443234134864, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.89794210856257, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.74515541821422, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.65901106685616, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.65901106685616, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.13443234134864, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.74515541821422, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.65227054072264, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.82446390120489, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.96638886290044, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.65901106685616, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.74515541821422, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.82446390120489, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.74515541821422, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.13443234134864, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.65901106685616, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.74515541821422, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.13443234134864, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.13443234134864, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.82446390120489, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.09065186812555, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.96638886290044, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.82446390120489, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.74515541821422, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.33829666868655, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.47415070681247, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.82446390120489, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.39116925406429, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.74515541821422, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.65901106685616, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.43352047378132, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.33829666868655, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.09065186812555, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.65901106685616, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.13443234134864, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.65901106685616, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.5131943767162, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.65901106685616, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.89794210856257, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.13443234134864, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.89794210856257, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.96638886290044, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.82446390120489, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## [1] -0.5430744
## [1] "ok 0.7"
## [1] "Trying 0.8"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 69
## Number of edges: 1943
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.3042
## Number of communities: 3
## Elapsed time: 0 seconds
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.446343359836389, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.753854532469499, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 3.91292089853599, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.446343359836389, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.446343359836389, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.22572523414202, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.446343359836389, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.89895103851091, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.753854532469499, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.446343359836389, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.446343359836389, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.59453013627182, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.47161094278722, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.73101115192823, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.38037754427827, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.70398066865461, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 1.4760270670944, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.446343359836389, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.81850243568804, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.89895103851091, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.0427009719033, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.22572523414202, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.753854532469499, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.988709514437032, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.446343359836389, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.97340678971251, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.81850243568804, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.446343359836389, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.73101115192823, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.446343359836389, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.988709514437032, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.753854532469499, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.42703432451869, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.10750306545264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.73101115192823, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.81850243568804, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.988709514437032, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.446343359836389, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.446343359836389, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.446343359836389, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.753854532469499, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.753854532469499, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.988709514437032, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.446343359836389, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.47161094278722, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.446343359836389, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.38037754427827, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.73101115192823, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.81850243568804, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.446343359836389, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.446343359836389, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.446343359836389, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.446343359836389, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.988709514437032, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.89895103851091, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.16836019348413, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.73101115192823, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.73101115192823, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.97340678971251, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.988709514437032, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.446343359836389, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.753854532469499, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 1.17876318047114, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.446343359836389, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.33143691743583, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.59453013627182, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.38037754427827, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 3.24962182653586, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.446343359836389, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.446343359836389, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.988709514437032, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.16836019348413, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.16836019348413, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.73101115192823, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.97340678971251, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.446343359836389, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.73101115192823, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.81850243568804, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.22572523414202, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.753854532469499, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.5552122598989, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.97340678971251, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.73101115192823, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.16836019348413, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.81850243568804, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.446343359836389, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.97340678971251, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.89895103851091, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.97340678971251, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.0427009719033, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.446343359836389, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.73101115192823, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.446343359836389, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 2.04782894407999, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.446343359836389, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.988709514437032, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.97340678971251, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.446343359836389, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.97478650473634, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.446343359836389, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.753854532469499, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.73101115192823, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.446343359836389, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.81850243568804, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.16836019348413, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.446343359836389, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.446343359836389, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.89895103851091, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.446343359836389, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.27997729585591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## [1] 0.5707483
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.68837084092945, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.74515541821422, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.13443234134864, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.65901106685616, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 3.37965870491184, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.03044928675679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.82446390120489, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.82446390120489, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.65901106685616, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.75066601024045, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.89794210856257, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.65901106685616, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.65901106685616, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.94242682588271, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 3.16499387665881, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.13443234134864, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.03044928675679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.5131943767162, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.8093070159704, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.89794210856257, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.86469890619979, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.65901106685616, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.74515541821422, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.33829666868655, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.09065186812555, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.65901106685616, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.14743498531117, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.34694478164919, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.89794210856257, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.13443234134864, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.13443234134864, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.09065186812555, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.96638886290044, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.74515541821422, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.82446390120489, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.39116925406429, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.33829666868655, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.25215717323341, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.82446390120489, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.74515541821422, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.89794210856257, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.74515541821422, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.33829666868655, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.74515541821422, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.89794210856257, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.09065186812555, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.82446390120489, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.65901106685616, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.89794210856257, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.74515541821422, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.20116629540761, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.30067364359064, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.13443234134864, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.89794210856257, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.74515541821422, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.65901106685616, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.65901106685616, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.13443234134864, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.74515541821422, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.65227054072264, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.82446390120489, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.96638886290044, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.65901106685616, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.74515541821422, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.82446390120489, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.74515541821422, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.13443234134864, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.65901106685616, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.74515541821422, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.13443234134864, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.13443234134864, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.82446390120489, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.09065186812555, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.96638886290044, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.82446390120489, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.74515541821422, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.33829666868655, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.47415070681247, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.82446390120489, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.39116925406429, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.74515541821422, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.65901106685616, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.43352047378132, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.33829666868655, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.09065186812555, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.65901106685616, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.13443234134864, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.65901106685616, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.5131943767162, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.65901106685616, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.89794210856257, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.13443234134864, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.89794210856257, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.96638886290044, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.82446390120489, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## [1] -0.5430744
## [1] "broke 0.8"
## [1] 0.7
## Warning: The following arguments are not used: pc.use
## Warning: The following arguments are not used: pc.use
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 69
## Number of edges: 1943
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.3497
## Number of communities: 2
## Elapsed time: 0 seconds
## [1] "/Users/kyu/Desktop/CellFindR_2.0/TM_Epi//2020-04-14 11:06:43/1.0"
## Saving 7 x 5 in image
## Calculating cluster 0
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.73101115192823, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.53097102862338, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 3.91292089853599, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.22572523414202, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.89895103851091, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.36049713199956, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.73101115192823, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.89895103851091, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.59453013627182, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.47161094278722, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.81850243568804, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.81850243568804, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.0427009719033, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.38037754427827, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.81850243568804, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.89895103851091, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.0427009719033, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.22572523414202, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.10750306545264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.73101115192823, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.81850243568804, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.15486596924196, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.73101115192823, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.42703432451869, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.10750306545264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.81850243568804, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.89895103851091, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.89895103851091, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.73101115192823, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.0427009719033, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.0427009719033, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.47161094278722, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.38037754427827, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.15486596924196, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.0427009719033, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.89895103851091, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.36049713199956, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.16836019348413, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.73101115192823, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.73101115192823, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 4.06453946099473, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.33143691743583, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.10750306545264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.59453013627182, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.38037754427827, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 3.24962182653586, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.81850243568804, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.89895103851091, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.16836019348413, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.10750306545264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.16836019348413, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.97340678971251, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.73101115192823, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.73101115192823, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.81850243568804, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.22572523414202, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.5552122598989, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.97340678971251, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.81850243568804, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.16836019348413, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.81850243568804, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.97340678971251, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.89895103851091, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.15486596924196, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.97340678971251, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.0427009719033, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.16836019348413, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.63236042178192, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.97340678971251, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.0427009719033, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.97340678971251, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.73101115192823, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.81850243568804, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.16836019348413, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.81850243568804, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.81850243568804, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.89895103851091, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.27997729585591, :
## cannot compute exact p-value with ties
## Calculating cluster 1
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.68837084092945, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.13443234134864, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.65901106685616, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.82446390120489, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.65901106685616, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.65901106685616, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.94242682588271, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 3.16499387665881, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.03044928675679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.5131943767162, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.8093070159704, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.89794210856257, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.86469890619979, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.74515541821422, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.33829666868655, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.14743498531117, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.13443234134864, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.13443234134864, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.09065186812555, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.82446390120489, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.33829666868655, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.25215717323341, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.82446390120489, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.74515541821422, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.89794210856257, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.33829666868655, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.74515541821422, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.89794210856257, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.09065186812555, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.82446390120489, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.65901106685616, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.89794210856257, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.13443234134864, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.74515541821422, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.65227054072264, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.82446390120489, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.82446390120489, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.13443234134864, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.13443234134864, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.96638886290044, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.82446390120489, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.74515541821422, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.33829666868655, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.39116925406429, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.65901106685616, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.43352047378132, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.33829666868655, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.09065186812555, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.65901106685616, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.13443234134864, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.5131943767162, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.13443234134864, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.96638886290044, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.82446390120489, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## [1] "getting matrix"
## Warning: 'use.scale' is a deprecated argument, please use the 'slot' argument
## instead
## Finished averaging RNA for cluster 0
## Finished averaging RNA for cluster 1
## [1] "0"
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.73101115192823, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.73101115192823, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.53097102862338, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.15486596924196, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 3.91292089853599, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.91637266854808, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.22572523414202, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.16836019348413, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.89895103851091, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.36049713199956, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.89895103851091, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.73101115192823, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.89895103851091, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.15486596924196, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.89895103851091, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.59453013627182, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.47161094278722, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.73101115192823, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.81850243568804, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.81850243568804, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.0427009719033, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.0427009719033, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.38037754427827, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.70398066865461, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.15486596924196, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.15486596924196, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.81850243568804, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.89895103851091, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.36049713199956, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.0427009719033, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.36049713199956, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.22572523414202, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.10750306545264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.73101115192823, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.97340678971251, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.81850243568804, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.15486596924196, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.73101115192823, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.97340678971251, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.73101115192823, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.73101115192823, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.42703432451869, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.36049713199956, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.81850243568804, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.10750306545264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.73101115192823, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.73101115192823, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.36049713199956, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.81850243568804, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.15486596924196, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.73101115192823, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.89895103851091, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.89895103851091, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.15486596924196, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.73101115192823, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.0427009719033, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.0427009719033, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.73101115192823, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.15486596924196, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.47161094278722, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.97340678971251, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.38037754427827, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.73101115192823, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.36049713199956, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.81850243568804, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.15486596924196, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.15486596924196, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.0427009719033, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.36049713199956, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.89895103851091, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.36049713199956, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.16836019348413, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.15486596924196, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.73101115192823, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.73101115192823, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.97340678971251, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.97340678971251, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 4.06453946099473, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.10750306545264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.89895103851091, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.36049713199956, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.33143691743583, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.15486596924196, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.10750306545264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.53097102862338, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.59453013627182, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.38037754427827, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 3.24962182653586, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.15486596924196, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.81850243568804, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.15486596924196, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.81850243568804, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.36049713199956, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.15486596924196, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.15486596924196, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.89895103851091, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.15486596924196, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.16836019348413, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.15486596924196, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.10750306545264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.16836019348413, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.15486596924196, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.73101115192823, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.97340678971251, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.15486596924196, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.73101115192823, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.53097102862338, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.73101115192823, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.73101115192823, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.81850243568804, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.15486596924196, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.22572523414202, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.36049713199956, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.15486596924196, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.10750306545264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.5552122598989, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.97340678971251, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.81850243568804, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.53097102862338, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.73101115192823, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.73101115192823, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.16836019348413, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.15486596924196, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.81850243568804, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.97340678971251, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.89895103851091, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.15486596924196, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.15486596924196, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.22572523414202, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.73101115192823, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.89895103851091, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.97340678971251, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.0427009719033, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.16836019348413, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.73101115192823, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 2.53310321104653, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.63236042178192, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.97340678971251, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.15486596924196, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.0427009719033, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.67657232231181, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.97340678971251, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.36049713199956, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.97478650473634, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.15486596924196, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.15486596924196, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.97340678971251, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.73101115192823, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.81850243568804, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.36049713199956, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.97340678971251, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.73101115192823, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.16836019348413, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.36049713199956, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.73101115192823, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.81850243568804, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.81850243568804, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.89895103851091, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 1.15486596924196, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.27997729585591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.544956101561838, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0.895706463137626, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, AACTTTCAGGGAAACA =
## 0, : cannot compute exact p-value with ties
## [1] "1"
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.13443234134864, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.65227054072264, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.68837084092945, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.74515541821422, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.33829666868655, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.13443234134864, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.65901106685616, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 3.37965870491184, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.03044928675679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.82446390120489, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.74515541821422, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.65901106685616, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.13443234134864, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.82446390120489, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.65901106685616, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.14743498531117, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.13443234134864, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.75066601024045, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.13443234134864, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.89794210856257, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.65901106685616, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.65901106685616, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.94242682588271, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 3.16499387665881, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.13443234134864, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.13443234134864, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.03044928675679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.5131943767162, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.8093070159704, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.89794210856257, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.86469890619979, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.65901106685616, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.74515541821422, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.74515541821422, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.33829666868655, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.13443234134864, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.33829666868655, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.13443234134864, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.13443234134864, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.13443234134864, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.13443234134864, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.13443234134864, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.09065186812555, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.74515541821422, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.65901106685616, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.14743498531117, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.34694478164919, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.96638886290044, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.89794210856257, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.13443234134864, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.13443234134864, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.13443234134864, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.33829666868655, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.13443234134864, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.09065186812555, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.96638886290044, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.74515541821422, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.82446390120489, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.96638886290044, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.39116925406429, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.33829666868655, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.74515541821422, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.25215717323341, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.82446390120489, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.74515541821422, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.13443234134864, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.74515541821422, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.89794210856257, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.74515541821422, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.13443234134864, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.33829666868655, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.74515541821422, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.96638886290044, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.65901106685616, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.13443234134864, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.89794210856257, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.74515541821422, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.14743498531117, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.09065186812555, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.62193565280111, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.82446390120489, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.65901106685616, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.89794210856257, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.74515541821422, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.20116629540761, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.30067364359064, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.13443234134864, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.13443234134864, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.65901106685616, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.13443234134864, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.33829666868655, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.89794210856257, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.13443234134864, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.74515541821422, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.65901106685616, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.65901106685616, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.13443234134864, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.74515541821422, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.82446390120489, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.65227054072264, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.33829666868655, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.82446390120489, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.09065186812555, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.96638886290044, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.65901106685616, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.74515541821422, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.74515541821422, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.74515541821422, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.82446390120489, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.74515541821422, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.33829666868655, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.13443234134864, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.13443234134864, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.65901106685616, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.65901106685616, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.74515541821422, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.13443234134864, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.33829666868655, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.13443234134864, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.65901106685616, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.13443234134864, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.82446390120489, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.13443234134864, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.09065186812555, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.96638886290044, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.82446390120489, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.74515541821422, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.13443234134864, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.33829666868655, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.13443234134864, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.47415070681247, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.13443234134864, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.82446390120489, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.39116925406429, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.65901106685616, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.13443234134864, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.33829666868655, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.74515541821422, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.65901106685616, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.55077074781196, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.43352047378132, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.33829666868655, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.13443234134864, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.09065186812555, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.62193565280111, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.13443234134864, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.65901106685616, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.13443234134864, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.89794210856257, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.65901106685616, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 2.5131943767162, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.56474032649557, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.89794210856257, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.65901106685616, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.89794210856257, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.13443234134864, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.46064877131679, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.82446390120489, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.34444967517707, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 1.13443234134864, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.89794210856257, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.878078650648452, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.96638886290044, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.06150442349463, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.66544617130983, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.88295623436734, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0.387083289853969, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.82446390120489, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 1.21295109665929, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATGGTGTGATGTGG = 0, AGGCCACTCTTGTCAT =
## 0.532471249637533, : cannot compute exact p-value with ties
## [1] "0"
## [1] "1"
## [1] "clustering 1.0.0"
## Computing nearest neighbor graph
## Computing SNN
## 11:09:11 UMAP embedding parameters a = 0.9922 b = 1.112
## 11:09:11 Read 45 rows and found 20 numeric columns
## 11:09:11 Using Annoy for neighbor search, n_neighbors = 10
## 11:09:11 Building Annoy index with metric = cosine, n_trees = 50
## 0% 10 20 30 40 50 60 70 80 90 100%
## [----|----|----|----|----|----|----|----|----|----|
## **************************************************|
## 11:09:11 Writing NN index file to temp file /var/folders/hw/8pgn_gss7tj01n1jg_zl_sx00000gp/T//RtmpbYWP8K/file1bcadd9eabd
## 11:09:11 Searching Annoy index using 1 thread, search_k = 1000
## 11:09:11 Annoy recall = 100%
## 11:09:12 Commencing smooth kNN distance calibration using 1 thread
## 11:09:12 Initializing from normalized Laplacian + noise
## 11:09:12 Commencing optimization for 500 epochs, with 534 positive edges
## 11:09:13 Optimization finished
## [1] "Trying 0.1"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 45
## Number of edges: 983
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.9000
## Number of communities: 1
## Elapsed time: 0 seconds
## [1] "noclusterfound 0.1"
## [1] "Trying 0.2"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 45
## Number of edges: 983
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.8000
## Number of communities: 1
## Elapsed time: 0 seconds
## [1] "noclusterfound 0.2"
## [1] "Trying 0.3"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 45
## Number of edges: 983
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.7000
## Number of communities: 1
## Elapsed time: 0 seconds
## [1] "noclusterfound 0.3"
## [1] "Trying 0.4"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 45
## Number of edges: 983
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.6000
## Number of communities: 1
## Elapsed time: 0 seconds
## [1] "noclusterfound 0.4"
## [1] "Trying 0.5"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 45
## Number of edges: 983
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.5000
## Number of communities: 1
## Elapsed time: 0 seconds
## [1] "noclusterfound 0.5"
## [1] "Trying 0.6"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 45
## Number of edges: 983
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.4000
## Number of communities: 1
## Elapsed time: 0 seconds
## [1] "noclusterfound 0.6"
## [1] "Trying 0.7"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 45
## Number of edges: 983
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.3155
## Number of communities: 2
## Elapsed time: 0 seconds
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.753854532469499, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.753854532469499, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 1.17876318047114, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.446343359836389, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.753854532469499, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.446343359836389, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.446343359836389, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.753854532469499, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.446343359836389, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.446343359836389, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.446343359836389, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.59453013627182, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.446343359836389, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.38037754427827, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.70398066865461, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.446343359836389, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.81850243568804, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.0427009719033, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 1.4760270670944, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 1.17876318047114, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.988709514437032, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.753854532469499, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.446343359836389, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.753854532469499, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.988709514437032, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.446343359836389, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.753854532469499, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.446343359836389, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.753854532469499, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.446343359836389, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.89895103851091, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.988709514437032, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.97340678971251, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.446343359836389, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.5290595779744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.446343359836389, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.446343359836389, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.753854532469499, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.446343359836389, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.446343359836389, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.446343359836389, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 1.17876318047114, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.73101115192823, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.446343359836389, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.446343359836389, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.446343359836389, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.753854532469499, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.988709514437032, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.446343359836389, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.446343359836389, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.446343359836389, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.446343359836389, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 2.04782894407999, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.988709514437032, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.446343359836389, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.446343359836389, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 2.97478650473634, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.446343359836389, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.41039498568388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.63512477982437, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.446343359836389, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.446343359836389, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.753854532469499, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.446343359836389, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.12006357086368, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.446343359836389, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.446343359836389, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.935617474851867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0, ACGGAGAAGTTGTAGA =
## 0.446343359836389, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 1.27572901997831, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.416248267791624, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGCAATCGGACAAG = 0.709278627536742, :
## cannot compute exact p-value with ties
## [1] NA
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 1.53097102862338, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.544956101561838, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.895706463137626, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.544956101561838, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0.718394691229268, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.544956101561838, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.544956101561838, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.544956101561838, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.895706463137626, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.544956101561838, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 1.67657232231181, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 1.42393054316986, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 1.15486596924196, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0.422367408267192, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 1.15486596924196, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 1.91637266854808, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.544956101561838, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 1.36049713199956, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.544956101561838, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.895706463137626, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.544956101561838, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 2.01767172917049, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 1.13213594328674, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 1.36049713199956, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0.422367408267192, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0.946512143704526, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.895706463137626, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.544956101561838, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.544956101561838, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 1.15486596924196, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.544956101561838, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.544956101561838, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 1.42393054316986, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0.422367408267192, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.895706463137626, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.895706463137626, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 1.36049713199956, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.544956101561838, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.544956101561838, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0.422367408267192, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.544956101561838, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.544956101561838, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 1.53097102862338, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.895706463137626, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0.946512143704526, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.895706463137626, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.895706463137626, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0.946512143704526, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.895706463137626, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0.422367408267192, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.544956101561838, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.895706463137626, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 2.19387000601045, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 1.36049713199956, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0.422367408267192, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0.422367408267192, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0.946512143704526, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 2.34362384419766, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.544956101561838, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.895706463137626, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 2.64202351012245, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 1.15486596924196, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0.422367408267192, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 1.13213594328674, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 1.36049713199956, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 1.28863870934724, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 1.15486596924196, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0.422367408267192, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 1.80364336435328, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 1.15486596924196, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0.946512143704526, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 2.74023684388573, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 1.91637266854808, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.544956101561838, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 1.67657232231181, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.895706463137626, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 1.67657232231181, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 1.80364336435328, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 2.19387000601045, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0.422367408267192, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.544956101561838, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.895706463137626, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.895706463137626, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.544956101561838, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.544956101561838, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 1.28863870934724, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 1.80364336435328, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 1.67657232231181, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0.946512143704526, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 1.13213594328674, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0.718394691229268, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 1.36049713199956, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.895706463137626, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.895706463137626, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.895706463137626, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.544956101561838, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.895706463137626, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.895706463137626, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.895706463137626, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.544956101561838, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0.718394691229268, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0.946512143704526, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0.422367408267192, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0.946512143704526, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0.422367408267192, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 1.53097102862338, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0.718394691229268, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 1.15486596924196, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0.422367408267192, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.895706463137626, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.895706463137626, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 1.67657232231181, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0.422367408267192, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.544956101561838, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 1.15486596924196, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.544956101561838, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.544956101561838, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.895706463137626, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.895706463137626, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0.946512143704526, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 1.13213594328674, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.895706463137626, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0.422367408267192, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.895706463137626, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0.718394691229268, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.895706463137626, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0.422367408267192, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 1.15486596924196, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.544956101561838, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0.946512143704526, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.895706463137626, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.895706463137626, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 1.36049713199956, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 1.36049713199956, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 1.13213594328674, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.544956101561838, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.544956101561838, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.544956101561838, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 1.53097102862338, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.895706463137626, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 1.36049713199956, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.895706463137626, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0.422367408267192, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.544956101561838, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.544956101561838, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0.422367408267192, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.544956101561838, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 1.53097102862338, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.544956101561838, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0.718394691229268, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 1.15486596924196, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.544956101561838, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.544956101561838, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 4.06453946099473, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.544956101561838, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 1.53097102862338, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.895706463137626, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 1.67657232231181, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 1.53097102862338, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 1.91637266854808, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.544956101561838, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0.422367408267192, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0.718394691229268, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.544956101561838, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.544956101561838, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 1.15486596924196, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.544956101561838, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0.422367408267192, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.544956101561838, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0.946512143704526, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 1.15486596924196, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.895706463137626, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 1.36049713199956, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.895706463137626, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 1.36049713199956, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.544956101561838, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.544956101561838, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.544956101561838, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.544956101561838, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 1.36049713199956, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 1.15486596924196, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 1.53097102862338, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.544956101561838, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.544956101561838, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0.946512143704526, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 2.10964658703183, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 1.36049713199956, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 1.36049713199956, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 1.15486596924196, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.895706463137626, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.895706463137626, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.544956101561838, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.544956101561838, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 1.15486596924196, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 1.36049713199956, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.544956101561838, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.544956101561838, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.895706463137626, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.895706463137626, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.544956101561838, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.895706463137626, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 1.80364336435328, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 1.13213594328674, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.544956101561838, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0.422367408267192, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 1.15486596924196, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 1.15486596924196, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 1.15486596924196, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.544956101561838, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.895706463137626, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.544956101561838, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.895706463137626, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.544956101561838, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0.718394691229268, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.895706463137626, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 1.15486596924196, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 1.80364336435328, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0.718394691229268, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0.422367408267192, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.544956101561838, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0.946512143704526, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 1.15486596924196, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0.422367408267192, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 2.53310321104653, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0.422367408267192, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.544956101561838, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.544956101561838, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.544956101561838, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.544956101561838, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.895706463137626, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0.946512143704526, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 1.53097102862338, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 1.15486596924196, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 1.13213594328674, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.544956101561838, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 1.67657232231181, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 1.15486596924196, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0.422367408267192, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0.718394691229268, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 1.36049713199956, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 2.27154758606711, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 1.13213594328674, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 1.15486596924196, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 1.36049713199956, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.544956101561838, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 1.36049713199956, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.895706463137626, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.544956101561838, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0.422367408267192, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 1.13213594328674, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.544956101561838, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.895706463137626, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.544956101561838, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0.422367408267192, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.895706463137626, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.895706463137626, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.544956101561838, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 1.15486596924196, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 1.36049713199956, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.544956101561838, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.544956101561838, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0.946512143704526, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.895706463137626, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.544956101561838, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.895706463137626, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.895706463137626, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.544956101561838, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.895706463137626, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.544956101561838, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0.718394691229268, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.544956101561838, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 1.42393054316986, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0.895706463137626, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 0, AAGGTTCTCGCTTGTC =
## 0.422367408267192, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTTTCAGGGAAACA = 1.15486596924196, :
## cannot compute exact p-value with ties
## [1] NA
## [1] "broke 0.7"
## [1] 0.6
## Warning: The following arguments are not used: pc.use
## Warning: The following arguments are not used: pc.use
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 45
## Number of edges: 983
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.4000
## Number of communities: 1
## Elapsed time: 0 seconds
## [1] "clustering 1.0.1"
## Warning in simpleLoess(y, x, w, span, degree = degree, parametric =
## parametric, : pseudoinverse used at -1.4003
## Warning in simpleLoess(y, x, w, span, degree = degree, parametric =
## parametric, : neighborhood radius 0.49725
## Warning in simpleLoess(y, x, w, span, degree = degree, parametric =
## parametric, : reciprocal condition number 1.1318e-14
## Warning in simpleLoess(y, x, w, span, degree = degree, parametric =
## parametric, : There are other near singularities as well. 0.090619
## Computing nearest neighbor graph
## Computing SNN
## 11:09:16 UMAP embedding parameters a = 0.9922 b = 1.112
## 11:09:16 Read 24 rows and found 20 numeric columns
## 11:09:16 Using Annoy for neighbor search, n_neighbors = 10
## 11:09:16 Building Annoy index with metric = cosine, n_trees = 50
## 0% 10 20 30 40 50 60 70 80 90 100%
## [----|----|----|----|----|----|----|----|----|----|
## **************************************************|
## 11:09:16 Writing NN index file to temp file /var/folders/hw/8pgn_gss7tj01n1jg_zl_sx00000gp/T//RtmpbYWP8K/file1bca5dc22565
## 11:09:16 Searching Annoy index using 1 thread, search_k = 1000
## 11:09:16 Annoy recall = 100%
## 11:09:16 Commencing smooth kNN distance calibration using 1 thread
## 11:09:17 Initializing from normalized Laplacian + noise
## 11:09:17 Commencing optimization for 500 epochs, with 274 positive edges
## 11:09:17 Optimization finished
## [1] "Trying 0.1"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 24
## Number of edges: 276
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.9000
## Number of communities: 1
## Elapsed time: 0 seconds
## [1] "noclusterfound 0.1"
## [1] "Trying 0.2"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 24
## Number of edges: 276
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.8000
## Number of communities: 1
## Elapsed time: 0 seconds
## [1] "noclusterfound 0.2"
## [1] "Trying 0.3"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 24
## Number of edges: 276
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.7000
## Number of communities: 1
## Elapsed time: 0 seconds
## [1] "noclusterfound 0.3"
## [1] "Trying 0.4"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 24
## Number of edges: 276
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.6000
## Number of communities: 1
## Elapsed time: 0 seconds
## [1] "noclusterfound 0.4"
## [1] "Trying 0.5"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 24
## Number of edges: 276
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.5000
## Number of communities: 1
## Elapsed time: 0 seconds
## [1] "noclusterfound 0.5"
## [1] "Trying 0.6"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 24
## Number of edges: 276
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.4000
## Number of communities: 1
## Elapsed time: 0 seconds
## [1] "noclusterfound 0.6"
## [1] "Trying 0.7"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 24
## Number of edges: 276
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.3000
## Number of communities: 1
## Elapsed time: 0 seconds
## [1] "noclusterfound 0.7"
## [1] "noclusterfound 0.7"
## Warning: The following arguments are not used: pc.use
## Warning: The following arguments are not used: pc.use
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 24
## Number of edges: 276
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.9000
## Number of communities: 1
## Elapsed time: 0 seconds
## [1] "clustering 1.1"
## Computing nearest neighbor graph
## Computing SNN
## 11:09:18 UMAP embedding parameters a = 0.9922 b = 1.112
## 11:09:18 Read 51 rows and found 20 numeric columns
## 11:09:18 Using Annoy for neighbor search, n_neighbors = 10
## 11:09:18 Building Annoy index with metric = cosine, n_trees = 50
## 0% 10 20 30 40 50 60 70 80 90 100%
## [----|----|----|----|----|----|----|----|----|----|
## **************************************************|
## 11:09:18 Writing NN index file to temp file /var/folders/hw/8pgn_gss7tj01n1jg_zl_sx00000gp/T//RtmpbYWP8K/file1bca752539f9
## 11:09:18 Searching Annoy index using 1 thread, search_k = 1000
## 11:09:18 Annoy recall = 100%
## 11:09:18 Commencing smooth kNN distance calibration using 1 thread
## 11:09:19 Initializing from normalized Laplacian + noise
## 11:09:19 Commencing optimization for 500 epochs, with 622 positive edges
## 11:09:19 Optimization finished
## [1] "Trying 0.1"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 51
## Number of edges: 1164
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.9000
## Number of communities: 1
## Elapsed time: 0 seconds
## [1] "noclusterfound 0.1"
## [1] "Trying 0.2"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 51
## Number of edges: 1164
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.8000
## Number of communities: 1
## Elapsed time: 0 seconds
## [1] "noclusterfound 0.2"
## [1] "Trying 0.3"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 51
## Number of edges: 1164
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.7000
## Number of communities: 1
## Elapsed time: 0 seconds
## [1] "noclusterfound 0.3"
## [1] "Trying 0.4"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 51
## Number of edges: 1164
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.6000
## Number of communities: 1
## Elapsed time: 0 seconds
## [1] "noclusterfound 0.4"
## [1] "Trying 0.5"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 51
## Number of edges: 1164
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.5000
## Number of communities: 1
## Elapsed time: 0 seconds
## [1] "noclusterfound 0.5"
## [1] "Trying 0.6"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 51
## Number of edges: 1164
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.4190
## Number of communities: 2
## Elapsed time: 0 seconds
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.24496095714796, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0.472007290739981, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.34183456994797, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.01750531870076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.01750531870076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 2.5382485015065, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.01750531870076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 1.03305181148226, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.01750531870076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.01750531870076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.01750531870076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.01750531870076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.24496095714796, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.65614674218206, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.01750531870076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.43014694316737, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.01750531870076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.01750531870076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0.472007290739981, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.34183456994797, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.24496095714796, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.78265118401869, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.34183456994797, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.13768625351892, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.24496095714796, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.43014694316737, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.01750531870076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0.472007290739981, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.01750531870076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.01750531870076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0.472007290739981, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0.472007290739981, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.01750531870076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.01750531870076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0.472007290739981, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.84036794184867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.34183456994797, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.89493446994273, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 2.04276245948719, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.51128917332228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.01750531870076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0.79137045161305, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0.472007290739981, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.78265118401869, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0.472007290739981, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.24496095714796, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.24496095714796, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0.79137045161305, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 2.5382485015065, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0.472007290739981, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.58633863204812, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0.79137045161305, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.58633863204812, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0.472007290739981, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 2.13041950445649, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.24496095714796, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0.472007290739981, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.94667692741323, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0.472007290739981, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.01750531870076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.65614674218206, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.13768625351892, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.24496095714796, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.01750531870076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.58633863204812, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.01750531870076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.13768625351892, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.78265118401869, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0.472007290739981, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.78265118401869, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.13768625351892, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.78265118401869, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.01750531870076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.24496095714796, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.24496095714796, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.34183456994797, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.58633863204812, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0.472007290739981, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.58633863204812, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0.472007290739981, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.13768625351892, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.43014694316737, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.99587330346087, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 2.13041950445649, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 1.22754370189976, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.43014694316737, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.13768625351892, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.01750531870076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.01750531870076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 1.65296922655459, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.13768625351892, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.24496095714796, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.34183456994797, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0.472007290739981, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.51128917332228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.43014694316737, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0.472007290739981, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 1.03305181148226, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.58633863204812, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 1.03305181148226, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.24496095714796, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0.79137045161305, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.01750531870076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0.472007290739981, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.01750531870076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0.79137045161305, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.65614674218206, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0.79137045161305, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.01750531870076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.01750531870076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 1.03305181148226, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 3.0675368824322, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.43014694316737, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0.79137045161305, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.13768625351892, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.34183456994797, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0.472007290739981, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.01750531870076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.24496095714796, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.01750531870076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 2.45080774195325, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.34183456994797, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.01750531870076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.72139805235163, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.13768625351892, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0.79137045161305, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 2.08755114432018, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.13768625351892, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0.472007290739981, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.24496095714796, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0.472007290739981, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.01750531870076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0.472007290739981, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.01750531870076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.78265118401869, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.01750531870076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0.472007290739981, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.65614674218206, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.43014694316737, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0.472007290739981, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.51128917332228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.89493446994273, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.13768625351892, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.34183456994797, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.24496095714796, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.99587330346087, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.65614674218206, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0.79137045161305, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.58633863204812, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.24496095714796, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0.472007290739981, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.43014694316737, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0.472007290739981, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.13768625351892, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 2.13041950445649, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0.472007290739981, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.34183456994797, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.13768625351892, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.01750531870076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.58633863204812, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.78265118401869, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.65614674218206, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.13768625351892, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 1.03305181148226, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.84036794184867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.01750531870076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0.79137045161305, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 1.03305181148226, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.01750531870076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.58633863204812, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.34183456994797, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.43014694316737, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.34183456994797, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.13768625351892, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.34183456994797, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.34183456994797, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.13768625351892, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.01750531870076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.43014694316737, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.13768625351892, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.13768625351892, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 1.03305181148226, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.89493446994273, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.01750531870076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.01750531870076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0.79137045161305, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0.472007290739981, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.01750531870076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.43014694316737, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.24496095714796, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.84036794184867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.72139805235163, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.24496095714796, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.13768625351892, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.34183456994797, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.13768625351892, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.58633863204812, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.13768625351892, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.24496095714796, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.13768625351892, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.43014694316737, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.24496095714796, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.89493446994273, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 2.24899112414213, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0.472007290739981, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.24496095714796, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 3.45736854369275, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0.472007290739981, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0.472007290739981, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 1.22754370189976, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.01750531870076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.65614674218206, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.13768625351892, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.01750531870076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.24496095714796, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.24496095714796, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.65614674218206, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.13768625351892, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0.472007290739981, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.01750531870076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.51128917332228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.01750531870076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.72139805235163, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.01750531870076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.34183456994797, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 2.24899112414213, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.13768625351892, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.24496095714796, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.01750531870076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.01750531870076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.24496095714796, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.01750531870076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.24496095714796, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.01750531870076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 2.21100822114693, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.34183456994797, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.01750531870076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.34183456994797, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.13768625351892, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.01750531870076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.34183456994797, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.24496095714796, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.24496095714796, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.58633863204812, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 2.78439699696416, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.01750531870076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.01750531870076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0.472007290739981, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.58633863204812, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0.472007290739981, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0.79137045161305, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.65614674218206, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0.472007290739981, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0.472007290739981, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.01750531870076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.94667692741323, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.34183456994797, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.01750531870076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.13768625351892, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 2.13041950445649, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.13768625351892, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.89493446994273, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.24496095714796, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.51128917332228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0.472007290739981, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0.472007290739981, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.65614674218206, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.01750531870076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.13768625351892, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 2.24899112414213, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.24496095714796, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.51128917332228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0.79137045161305, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0.79137045161305, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.43014694316737, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0.472007290739981, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.34183456994797, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 2.28558396386275, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.13768625351892, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.01750531870076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.01750531870076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.01750531870076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.43014694316737, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.51128917332228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.58633863204812, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.78265118401869, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.94667692741323, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.01750531870076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.72139805235163, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0.79137045161305, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0.472007290739981, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.34183456994797, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0.79137045161305, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 3.08384226497018, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 3.33935003768325, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0.472007290739981, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0.472007290739981, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0.79137045161305, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.65614674218206, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.94667692741323, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0.472007290739981, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0.472007290739981, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.89493446994273, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.01750531870076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.43014694316737, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 1.03305181148226, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0.472007290739981, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0.472007290739981, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 1.03305181148226, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.78265118401869, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.24496095714796, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.13768625351892, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.24496095714796, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.72139805235163, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.01750531870076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.13768625351892, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.24496095714796, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0.472007290739981, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.24496095714796, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 1.3902976774756, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.01750531870076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.58633863204812, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.58633863204812, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0.79137045161305, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.13768625351892, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.01750531870076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.34183456994797, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.13768625351892, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 2.17152546087137, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0.79137045161305, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.34183456994797, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.72139805235163, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 2.21100822114693, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.34183456994797, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.01750531870076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.51128917332228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.94667692741323, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.24496095714796, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.13768625351892, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.24496095714796, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.43014694316737, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.24496095714796, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.24496095714796, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.13768625351892, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 1.22754370189976, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.34183456994797, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.24496095714796, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.01750531870076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 2.61865438893869, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 2.48081227294354, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.99587330346087, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.65614674218206, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.43014694316737, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.65614674218206, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 1.22754370189976, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.34183456994797, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.34183456994797, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 1.03305181148226, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.01750531870076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.13768625351892, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.13768625351892, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.84036794184867, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0.472007290739981, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.24496095714796, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.51128917332228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.78265118401869, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.01750531870076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0.472007290739981, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.13768625351892, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.13768625351892, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.01750531870076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.58633863204812, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.13768625351892, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0.472007290739981, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 2.08755114432018, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.01750531870076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 2.13041950445649, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.01750531870076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.43014694316737, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.34183456994797, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 1.22754370189976, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.34183456994797, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.13768625351892, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.13768625351892, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.72139805235163, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0.472007290739981, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0.472007290739981, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 2.28558396386275, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.24496095714796, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.78265118401869, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.34183456994797, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.01750531870076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.13768625351892, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.302514301445835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.01750531870076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0.472007290739981, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.43014694316737, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.13768625351892, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.01750531870076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.880882439811454, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 2.48081227294354, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.534452728199591, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0.722594854998228, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 0, ACTGATGTCTGCGACG =
## 0.472007290739981, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACATACGCATGTTGAC = 1.13768625351892, :
## cannot compute exact p-value with ties
## [1] NA
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.42015146039036, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.42015146039036, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 1.12353044577931, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.42015146039036, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 1.87720035081387, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 3.17847646528697, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.868694070930074, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 1.12353044577931, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.42015146039036, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.82930867336336, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.82930867336336, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.42015146039036, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 2.23031269012679, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 1.12353044577931, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.64551191001662, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 2.43878914766868, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.868694070930074, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 1.12353044577931, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.868694070930074, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 2.23722763326388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.42015146039036, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.42015146039036, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.868694070930074, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 2.750012012263, : cannot
## compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.868694070930074, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.868694070930074, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 1.12353044577931, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 1.12353044577931, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.42015146039036, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 2.11883169893369, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.64551191001662, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.64551191001662, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.64551191001662, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.868694070930074, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.42015146039036, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 1.87720035081387, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 1.49503427054658, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.64551191001662, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.64551191001662, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.64551191001662, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.42015146039036, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.42015146039036, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.42015146039036, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.64551191001662, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 1.49503427054658, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 3.33910238571705, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 1.12353044577931, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.868694070930074, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.42015146039036, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 2.43878914766868, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 1.12353044577931, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.868694070930074, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.82930867336336, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 1.49503427054658, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 1.32643593881325, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.42015146039036, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.42015146039036, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.868694070930074, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.42015146039036, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.868694070930074, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 2.3430781975401, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.98451174135764, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 2.11883169893369, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 1.32643593881325, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.82930867336336, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 1.12353044577931, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.64551191001662, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.82930867336336, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 1.12353044577931, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.42015146039036, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 1.63926604835181, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.98451174135764, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.64551191001662, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.64551191001662, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 2.23722763326388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 1.12353044577931, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.42015146039036, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.42015146039036, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 1.32643593881325, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 1.63926604835181, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.868694070930074, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.868694070930074, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 1.12353044577931, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.42015146039036, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.42015146039036, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.868694070930074, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.64551191001662, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 1.32643593881325, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.42015146039036, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.868694070930074, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.98451174135764, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.868694070930074, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.868694070930074, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.42015146039036, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 1.76529316113483, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.42015146039036, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.42015146039036, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.868694070930074, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.868694070930074, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.868694070930074, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.42015146039036, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.42015146039036, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 1.87720035081387, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.868694070930074, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.98451174135764, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.868694070930074, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 1.63926604835181, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.82930867336336, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 1.12353044577931, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.42015146039036, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.868694070930074, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 1.63926604835181, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 1.12353044577931, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.42015146039036, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.42015146039036, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.98451174135764, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 1.76529316113483, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.98451174135764, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 1.32643593881325, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 1.49503427054658, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.98451174135764, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.64551191001662, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.868694070930074, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 1.12353044577931, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.868694070930074, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.868694070930074, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.42015146039036, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.868694070930074, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 2.11883169893369, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.868694070930074, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.42015146039036, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.64551191001662, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 1.12353044577931, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.64551191001662, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.868694070930074, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.868694070930074, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.42015146039036, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.868694070930074, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 1.12353044577931, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.868694070930074, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 1.12353044577931, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 3.68132299762835, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.82930867336336, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.42015146039036, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 3.42594230711382, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.868694070930074, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.868694070930074, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.868694070930074, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.42015146039036, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 2.7427643256777, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.64551191001662, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.42015146039036, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.868694070930074, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 1.12353044577931, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.98451174135764, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.64551191001662, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.42015146039036, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.82930867336336, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.64551191001662, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.868694070930074, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.868694070930074, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.42015146039036, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.868694070930074, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 1.32643593881325, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.868694070930074, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.868694070930074, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.868694070930074, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.42015146039036, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 1.32643593881325, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 1.12353044577931, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 1.63926604835181, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 2.23722763326388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 1.12353044577931, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.98451174135764, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 1.32643593881325, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 2.23722763326388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.868694070930074, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.98451174135764, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 5.49144089851397, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 1.12353044577931, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 2.43878914766868, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 2.11883169893369, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.82930867336336, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 1.49503427054658, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.868694070930074, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.98451174135764, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.868694070930074, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.868694070930074, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 2.81473397014915, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.64551191001662, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.64551191001662, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 1.63926604835181, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.868694070930074, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.868694070930074, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 1.12353044577931, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 1.12353044577931, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 2.23722763326388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.42015146039036, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.82930867336336, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.868694070930074, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.64551191001662, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 1.32643593881325, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.42015146039036, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.82930867336336, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.82930867336336, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.868694070930074, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.64551191001662, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.82930867336336, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.98451174135764, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.868694070930074, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 1.32643593881325, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.64551191001662, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.868694070930074, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 1.32643593881325, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.42015146039036, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.868694070930074, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.82930867336336, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 1.32643593881325, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.42015146039036, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.98451174135764, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 1.32643593881325, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.64551191001662, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.868694070930074, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.868694070930074, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.868694070930074, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.42015146039036, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.868694070930074, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.64551191001662, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.64551191001662, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 1.12353044577931, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.64551191001662, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.82930867336336, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.42015146039036, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 1.12353044577931, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.98451174135764, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 2.43878914766868, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 1.32643593881325, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 1.32643593881325, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 1.49503427054658, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.868694070930074, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.42015146039036, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.868694070930074, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.868694070930074, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.64551191001662, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.868694070930074, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 1.12353044577931, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.42015146039036, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.868694070930074, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.42015146039036, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.64551191001662, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 2.11883169893369, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.64551191001662, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.868694070930074, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.42015146039036, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.868694070930074, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 1.12353044577931, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.98451174135764, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.82930867336336, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.82930867336336, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.98451174135764, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 2.30205218966186, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 1.12353044577931, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.868694070930074, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 1.12353044577931, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 1.76529316113483, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.42015146039036, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.42015146039036, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.64551191001662, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.64551191001662, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 1.12353044577931, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.64551191001662, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.64551191001662, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 1.12353044577931, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 1.49503427054658, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 2.43878914766868, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.42015146039036, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.868694070930074, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.42015146039036, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.42015146039036, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 2.11883169893369, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.868694070930074, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 2.3430781975401, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.868694070930074, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.82930867336336, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.42015146039036, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.64551191001662, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.82930867336336, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 1.76529316113483, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.42015146039036, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.42015146039036, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.82930867336336, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 2.23722763326388, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.868694070930074, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.868694070930074, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.42015146039036, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 1.12353044577931, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.42015146039036, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 1.12353044577931, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.868694070930074, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 1.49503427054658, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.42015146039036, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.64551191001662, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.42015146039036, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 1.12353044577931, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 2.11883169893369, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 2.11883169893369, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.868694070930074, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.868694070930074, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.64551191001662, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.868694070930074, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.64551191001662, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.868694070930074, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.42015146039036, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.42015146039036, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.82930867336336, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 1.12353044577931, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 2.11883169893369, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.525850902313725, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.868694070930074, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0.868694070930074, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.42015146039036, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0, CATGGCGTCTTGAGGT =
## 1.12353044577931, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 2.11883169893369, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 0.715845463940913, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(CACAGGCCAAACTGCT = 1.12876360090381, :
## cannot compute exact p-value with ties
## [1] NA
## [1] "broke 0.6"
## [1] 0.5
## Warning: The following arguments are not used: pc.use
## Warning: The following arguments are not used: pc.use
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 51
## Number of edges: 1164
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.5000
## Number of communities: 1
## Elapsed time: 0 seconds
## [1] "clustering 1.2"
## Computing nearest neighbor graph
## Computing SNN
## 11:09:26 UMAP embedding parameters a = 0.9922 b = 1.112
## 11:09:26 Read 40 rows and found 20 numeric columns
## 11:09:26 Using Annoy for neighbor search, n_neighbors = 10
## 11:09:26 Building Annoy index with metric = cosine, n_trees = 50
## 0% 10 20 30 40 50 60 70 80 90 100%
## [----|----|----|----|----|----|----|----|----|----|
## **************************************************|
## 11:09:27 Writing NN index file to temp file /var/folders/hw/8pgn_gss7tj01n1jg_zl_sx00000gp/T//RtmpbYWP8K/file1bca5f014684
## 11:09:27 Searching Annoy index using 1 thread, search_k = 1000
## 11:09:27 Annoy recall = 100%
## 11:09:27 Commencing smooth kNN distance calibration using 1 thread
## 11:09:27 Initializing from normalized Laplacian + noise
## 11:09:27 Commencing optimization for 500 epochs, with 480 positive edges
## 11:09:28 Optimization finished
## [1] "Trying 0.1"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 40
## Number of edges: 780
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.9000
## Number of communities: 1
## Elapsed time: 0 seconds
## [1] "noclusterfound 0.1"
## [1] "Trying 0.2"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 40
## Number of edges: 780
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.8000
## Number of communities: 1
## Elapsed time: 0 seconds
## [1] "noclusterfound 0.2"
## [1] "Trying 0.3"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 40
## Number of edges: 780
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.7000
## Number of communities: 1
## Elapsed time: 0 seconds
## [1] "noclusterfound 0.3"
## [1] "Trying 0.4"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 40
## Number of edges: 780
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.6000
## Number of communities: 1
## Elapsed time: 0 seconds
## [1] "noclusterfound 0.4"
## [1] "Trying 0.5"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 40
## Number of edges: 780
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.5000
## Number of communities: 1
## Elapsed time: 0 seconds
## [1] "noclusterfound 0.5"
## [1] "Trying 0.6"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 40
## Number of edges: 780
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.4000
## Number of communities: 1
## Elapsed time: 0 seconds
## [1] "noclusterfound 0.6"
## [1] "Trying 0.7"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 40
## Number of edges: 780
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.3000
## Number of communities: 1
## Elapsed time: 0 seconds
## [1] "noclusterfound 0.7"
## [1] "noclusterfound 0.7"
## Warning: The following arguments are not used: pc.use
## Warning: The following arguments are not used: pc.use
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 40
## Number of edges: 780
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.9000
## Number of communities: 1
## Elapsed time: 0 seconds
## [1] "clustering 2"
## Computing nearest neighbor graph
## Computing SNN
## 11:09:29 UMAP embedding parameters a = 0.9922 b = 1.112
## 11:09:29 Read 156 rows and found 20 numeric columns
## 11:09:29 Using Annoy for neighbor search, n_neighbors = 10
## 11:09:29 Building Annoy index with metric = cosine, n_trees = 50
## 0% 10 20 30 40 50 60 70 80 90 100%
## [----|----|----|----|----|----|----|----|----|----|
## **************************************************|
## 11:09:29 Writing NN index file to temp file /var/folders/hw/8pgn_gss7tj01n1jg_zl_sx00000gp/T//RtmpbYWP8K/file1bca4cbcb4d6
## 11:09:29 Searching Annoy index using 1 thread, search_k = 1000
## 11:09:29 Annoy recall = 100%
## 11:09:29 Commencing smooth kNN distance calibration using 1 thread
## 11:09:30 Initializing from normalized Laplacian + noise
## 11:09:30 Commencing optimization for 500 epochs, with 1934 positive edges
## 11:09:30 Optimization finished
## [1] "Trying 0.1"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 156
## Number of edges: 5103
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.9000
## Number of communities: 1
## Elapsed time: 0 seconds
## [1] "noclusterfound 0.1"
## [1] "Trying 0.2"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 156
## Number of edges: 5103
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.8000
## Number of communities: 1
## Elapsed time: 0 seconds
## [1] "noclusterfound 0.2"
## [1] "Trying 0.3"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 156
## Number of edges: 5103
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.7468
## Number of communities: 2
## Elapsed time: 0 seconds
## [1] -0.6237469
## [1] 0.8416823
## [1] "ok 0.3"
## [1] "Trying 0.4"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 156
## Number of edges: 5103
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.6954
## Number of communities: 2
## Elapsed time: 0 seconds
## [1] -0.6237469
## [1] 0.8416823
## [1] "ok 0.4"
## [1] "Trying 0.5"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 156
## Number of edges: 5103
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.6440
## Number of communities: 2
## Elapsed time: 0 seconds
## [1] -0.6237469
## [1] 0.8416823
## [1] "ok 0.5"
## [1] "Trying 0.6"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 156
## Number of edges: 5103
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.5926
## Number of communities: 2
## Elapsed time: 0 seconds
## [1] -0.6237469
## [1] 0.8416823
## [1] "ok 0.6"
## [1] "Trying 0.7"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 156
## Number of edges: 5103
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.5412
## Number of communities: 2
## Elapsed time: 0 seconds
## [1] -0.6237469
## [1] 0.8416823
## [1] "ok 0.7"
## [1] "Trying 0.8"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 156
## Number of edges: 5103
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.4996
## Number of communities: 3
## Elapsed time: 0 seconds
## [1] 0.8649994
## [1] NA
## [1] NA
## [1] "broke 0.8"
## [1] 0.7
## Warning: The following arguments are not used: pc.use
## Warning: The following arguments are not used: pc.use
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 156
## Number of edges: 5103
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.5412
## Number of communities: 2
## Elapsed time: 0 seconds
## [1] "/Users/kyu/Desktop/CellFindR_2.0/TM_Epi//2020-04-14 11:06:43/2"
## Saving 7 x 5 in image
## Calculating cluster 0
## Calculating cluster 1
## [1] "getting matrix"
## Warning: 'use.scale' is a deprecated argument, please use the 'slot' argument
## instead
## Finished averaging RNA for cluster 0
## Finished averaging RNA for cluster 1
## [1] "0"
## [1] "1"
## [1] "0"
## [1] "1"
## [1] "clustering 2.0"
## Computing nearest neighbor graph
## Computing SNN
## 11:10:15 UMAP embedding parameters a = 0.9922 b = 1.112
## 11:10:15 Read 89 rows and found 20 numeric columns
## 11:10:15 Using Annoy for neighbor search, n_neighbors = 10
## 11:10:15 Building Annoy index with metric = cosine, n_trees = 50
## 0% 10 20 30 40 50 60 70 80 90 100%
## [----|----|----|----|----|----|----|----|----|----|
## **************************************************|
## 11:10:15 Writing NN index file to temp file /var/folders/hw/8pgn_gss7tj01n1jg_zl_sx00000gp/T//RtmpbYWP8K/file1bca213b806c
## 11:10:15 Searching Annoy index using 1 thread, search_k = 1000
## 11:10:15 Annoy recall = 100%
## 11:10:16 Commencing smooth kNN distance calibration using 1 thread
## 11:10:16 Initializing from normalized Laplacian + noise
## 11:10:16 Commencing optimization for 500 epochs, with 1128 positive edges
## 11:10:17 Optimization finished
## [1] "Trying 0.1"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 89
## Number of edges: 2776
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.9000
## Number of communities: 1
## Elapsed time: 0 seconds
## [1] "noclusterfound 0.1"
## [1] "Trying 0.2"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 89
## Number of edges: 2776
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.8000
## Number of communities: 1
## Elapsed time: 0 seconds
## [1] "noclusterfound 0.2"
## [1] "Trying 0.3"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 89
## Number of edges: 2776
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.7000
## Number of communities: 1
## Elapsed time: 0 seconds
## [1] "noclusterfound 0.3"
## [1] "Trying 0.4"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 89
## Number of edges: 2776
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.6000
## Number of communities: 1
## Elapsed time: 0 seconds
## [1] "noclusterfound 0.4"
## [1] "Trying 0.5"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 89
## Number of edges: 2776
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.5116
## Number of communities: 2
## Elapsed time: 0 seconds
## [1] NA
## [1] NA
## [1] "broke 0.5"
## [1] 0.4
## Warning: The following arguments are not used: pc.use
## Warning: The following arguments are not used: pc.use
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 89
## Number of edges: 2776
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.6000
## Number of communities: 1
## Elapsed time: 0 seconds
## [1] "clustering 2.1"
## Computing nearest neighbor graph
## Computing SNN
## 11:10:19 UMAP embedding parameters a = 0.9922 b = 1.112
## 11:10:19 Read 67 rows and found 20 numeric columns
## 11:10:19 Using Annoy for neighbor search, n_neighbors = 10
## 11:10:19 Building Annoy index with metric = cosine, n_trees = 50
## 0% 10 20 30 40 50 60 70 80 90 100%
## [----|----|----|----|----|----|----|----|----|----|
## **************************************************|
## 11:10:19 Writing NN index file to temp file /var/folders/hw/8pgn_gss7tj01n1jg_zl_sx00000gp/T//RtmpbYWP8K/file1bca496c437f
## 11:10:19 Searching Annoy index using 1 thread, search_k = 1000
## 11:10:19 Annoy recall = 100%
## 11:10:19 Commencing smooth kNN distance calibration using 1 thread
## 11:10:20 Initializing from normalized Laplacian + noise
## 11:10:20 Commencing optimization for 500 epochs, with 830 positive edges
## 11:10:20 Optimization finished
## [1] "Trying 0.1"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 67
## Number of edges: 2062
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.9000
## Number of communities: 1
## Elapsed time: 0 seconds
## [1] "noclusterfound 0.1"
## [1] "Trying 0.2"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 67
## Number of edges: 2062
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.8000
## Number of communities: 1
## Elapsed time: 0 seconds
## [1] "noclusterfound 0.2"
## [1] "Trying 0.3"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 67
## Number of edges: 2062
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.7000
## Number of communities: 1
## Elapsed time: 0 seconds
## [1] "noclusterfound 0.3"
## [1] "Trying 0.4"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 67
## Number of edges: 2062
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.6000
## Number of communities: 1
## Elapsed time: 0 seconds
## [1] "noclusterfound 0.4"
## [1] "Trying 0.5"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 67
## Number of edges: 2062
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.5000
## Number of communities: 1
## Elapsed time: 0 seconds
## [1] "noclusterfound 0.5"
## [1] "Trying 0.6"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 67
## Number of edges: 2062
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.4000
## Number of communities: 1
## Elapsed time: 0 seconds
## [1] "noclusterfound 0.6"
## [1] "Trying 0.7"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 67
## Number of edges: 2062
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.3042
## Number of communities: 2
## Elapsed time: 0 seconds
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0.557513209101282, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0.557513209101282, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.84697535530194, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.02252435309086, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.02252435309086, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.02252435309086, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.465870961959735, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.636630830278428, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.782440547129916, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.465870961959735, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.21598205576,
## ACATCAGCATGTCGAT = 1.17525632205977, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.909670241402031, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.12392416262103, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.465870961959735, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.782440547129916, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.465870961959735, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.63973617651476, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0.913345882108209, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0.557513209101282, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.636630830278428, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.465870961959735, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 2.05721073731985, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.909670241402031, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.909670241402031, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.782440547129916, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.909670241402031, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.909670241402031, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.465870961959735, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.636630830278428, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0.557513209101282, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.30027509049641, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.465870961959735, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.465870961959735, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.89270722475025, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.37801187670991, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.636630830278428, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.465870961959735, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.465870961959735, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.465870961959735, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.465870961959735, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.465870961959735, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 2.0944307058046, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.58044339434381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.12392416262103, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0.913345882108209, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.79905143508391, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.465870961959735, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.465870961959735, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.465870961959735, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.465870961959735, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.782440547129916, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.636630830278428, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.909670241402031, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.465870961959735, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.636630830278428, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.21598205576,
## ACATCAGCATGTCGAT = 1.82845624157867, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.02252435309086, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 2.0944307058046, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.782440547129916, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.58044339434381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.37801187670991, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.782440547129916, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.02252435309086, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.782440547129916, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.58044339434381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.02252435309086, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.636630830278428, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.636630830278428, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.45013910378982, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.636630830278428, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.37801187670991, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.21598205576,
## ACATCAGCATGTCGAT = 1.17525632205977, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.636630830278428, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 2.0944307058046, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.30027509049641, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0.913345882108209, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.636630830278428, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.782440547129916, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.37801187670991, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.465870961959735, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.12392416262103, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.465870961959735, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.30027509049641, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.782440547129916, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.465870961959735, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0.557513209101282, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0.913345882108209, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.909670241402031, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.782440547129916, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.909670241402031, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.12392416262103, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.909670241402031, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.12392416262103, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.465870961959735, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.21598205576,
## ACATCAGCATGTCGAT = 0.913345882108209, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0.913345882108209, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0.557513209101282, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.02252435309086, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.636630830278428, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.30027509049641, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.465870961959735, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.02252435309086, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0.913345882108209, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.782440547129916, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.636630830278428, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0.557513209101282, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.636630830278428, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.69570924193985, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.782440547129916, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.636630830278428, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.465870961959735, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.782440547129916, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.636630830278428, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.465870961959735, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.465870961959735, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.909670241402031, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0.557513209101282, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.465870961959735, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.51741215025268, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.465870961959735, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0.557513209101282, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.909670241402031, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.636630830278428, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.782440547129916, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.02252435309086, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.58044339434381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0.557513209101282, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.782440547129916, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.465870961959735, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.465870961959735, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.465870961959735, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.782440547129916, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.636630830278428, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.58044339434381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.636630830278428, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.636630830278428, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 2.4322548973329, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.909670241402031, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.782440547129916, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0.557513209101282, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0.913345882108209, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0.557513209101282, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.465870961959735, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.909670241402031, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.782440547129916, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.37801187670991, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0.557513209101282, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.465870961959735, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.465870961959735, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.636630830278428, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.465870961959735, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.782440547129916, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.02252435309086, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.909670241402031, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.465870961959735, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.51741215025268, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.636630830278428, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.465870961959735, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.63973617651476, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 2.45798283324168, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.636630830278428, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.21598205576,
## ACATCAGCATGTCGAT = 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.21598205576,
## ACATCAGCATGTCGAT = 0.557513209101282, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.782440547129916, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.782440547129916, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0.913345882108209, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.636630830278428, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 1.38261194189257, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.636630830278428, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.636630830278428, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.909670241402031, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.782440547129916, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.02252435309086, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.782440547129916, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.782440547129916, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.782440547129916, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.465870961959735, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.782440547129916, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0.557513209101282, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.465870961959735, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.909670241402031, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.636630830278428, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.02252435309086, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.782440547129916, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.12392416262103, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.909670241402031, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.636630830278428, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.636630830278428, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.465870961959735, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.21598205576,
## ACATCAGCATGTCGAT = 1.38261194189257, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.909670241402031, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.636630830278428, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.45013910378982, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.51741215025268, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.69570924193985, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0.557513209101282, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.465870961959735, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.02252435309086, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.465870961959735, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.21598205576,
## ACATCAGCATGTCGAT = 1.70073023424299, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.636630830278428, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.636630830278428, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.636630830278428, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.21598205576,
## ACATCAGCATGTCGAT = 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.02252435309086, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.21598205576,
## ACATCAGCATGTCGAT = 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.782440547129916, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.465870961959735, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.465870961959735, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.909670241402031, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.782440547129916, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.782440547129916, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.465870961959735, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.782440547129916, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.02252435309086, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.909670241402031, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0.557513209101282, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.02252435309086, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.12392416262103, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.465870961959735, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.465870961959735, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.782440547129916, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.37801187670991, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.636630830278428, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0.557513209101282, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.782440547129916, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.465870961959735, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.89270722475025, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.465870961959735, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.21598205576,
## ACATCAGCATGTCGAT = 0.913345882108209, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.02252435309086, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.30027509049641, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.89270722475025, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.909670241402031, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.21598205576,
## ACATCAGCATGTCGAT = 1.17525632205977, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.909670241402031, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.782440547129916, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.465870961959735, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.636630830278428, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.63973617651476, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.909670241402031, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.58044339434381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.636630830278428, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.02252435309086, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.63973617651476, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.30027509049641, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.02252435309086, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.21598205576,
## ACATCAGCATGTCGAT = 1.82845624157867, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.909670241402031, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.465870961959735, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.636630830278428, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.51741215025268, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.782440547129916, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.465870961959735, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.909670241402031, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.782440547129916, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.909670241402031, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.636630830278428, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.58044339434381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.636630830278428, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.84697535530194, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.02252435309086, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.465870961959735, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.58044339434381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.636630830278428, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.782440547129916, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.02252435309086, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.465870961959735, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.909670241402031, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.782440547129916, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 2.0944307058046, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.465870961959735, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.465870961959735, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0.557513209101282, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0.557513209101282, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.465870961959735, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 2.22024293040427, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.02252435309086, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.909670241402031, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.636630830278428, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.465870961959735, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.465870961959735, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.12392416262103, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.465870961959735, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.782440547129916, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.69570924193985, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.909670241402031, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.909670241402031, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.79905143508391, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.21598205576,
## ACATCAGCATGTCGAT = 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.79905143508391, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.782440547129916, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.02252435309086, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.782440547129916, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.909670241402031, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.636630830278428, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.30027509049641, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.636630830278428, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0.557513209101282, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.782440547129916, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.465870961959735, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.12392416262103, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.909670241402031, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.636630830278428, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.465870961959735, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.636630830278428, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.45013910378982, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.02252435309086, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.465870961959735, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.636630830278428, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.636630830278428, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.21598205576,
## ACATCAGCATGTCGAT = 1.38261194189257, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.51741215025268, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.465870961959735, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.465870961959735, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.63973617651476, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.02252435309086, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.21598205576,
## ACATCAGCATGTCGAT = 1.70073023424299, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.636630830278428, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.782440547129916, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.465870961959735, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0.557513209101282, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.465870961959735, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.636630830278428, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.02252435309086, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.909670241402031, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.782440547129916, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.51741215025268, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.465870961959735, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.465870961959735, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.02252435309086, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.21598205576,
## ACATCAGCATGTCGAT = 2.13573249560615, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.636630830278428, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.69570924193985, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.465870961959735, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.58044339434381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.636630830278428, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.465870961959735, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.12392416262103, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.12392416262103, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.58044339434381, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.782440547129916, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.465870961959735, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.465870961959735, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.636630830278428, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.45013910378982, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.465870961959735, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.465870961959735, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.909670241402031, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 3.01575218933221, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.45013910378982, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0.557513209101282, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0.557513209101282, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.02252435309086, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.636630830278428, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0.557513209101282, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.636630830278428, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.37801187670991, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.465870961959735, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.636630830278428, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 1.55426801114165, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.909670241402031, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.782440547129916, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.636630830278428, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.465870961959735, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.636630830278428, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.465870961959735, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.782440547129916, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.636630830278428, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.909670241402031, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.465870961959735, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.02252435309086, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.12392416262103, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.782440547129916, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.21598205576,
## ACATCAGCATGTCGAT = 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.45013910378982, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.465870961959735, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.782440547129916, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.465870961959735, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.45013910378982, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.782440547129916, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.21598205576,
## ACATCAGCATGTCGAT = 1.38261194189257, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.02252435309086, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.465870961959735, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 1.94170056123289, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.465870961959735, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.89270722475025, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.02252435309086, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 2.40584751553052, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.21598205576,
## ACATCAGCATGTCGAT = 0.557513209101282, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.909670241402031, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0.557513209101282, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 1.17525632205977, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.465870961959735, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.12392416262103, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.636630830278428, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.636630830278428, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.636630830278428, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.30027509049641, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.259823106416701, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.636630830278428, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0.636630830278428, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 0, ACATCAGCATGTCGAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.02252435309086, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAAGATGTCACAGTAC = 1.58044339434381, :
## cannot compute exact p-value with ties
## [1] NA
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.05493304706995, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.45292912767947, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.87706627514812, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.55678912006325, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0.689418152000079, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0.689418152000079, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.20588954365192, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.73685566178721, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0.689418152000079, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.87706627514812, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.45292912767947, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.88939249754788, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.73685566178721, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.87706627514812, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.05493304706995, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.55678912006325, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 2.0818368923417, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.05493304706995, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.87706627514812, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 2.38203009138853, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.87706627514812, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.05493304706995, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.87706627514812, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 2.13855107429828, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.05493304706995, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.05493304706995, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.45292912767947, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0.689418152000079, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 2.76558534757212, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.95773910144342, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.20588954365192, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 3.32045380971239, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.55678912006325, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.20588954365192, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.05493304706995, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.65086992207395, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.05493304706995, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.87706627514812, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.05493304706995, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.87706627514812, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.87706627514812, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.65086992207395, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.87706627514812, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.87706627514812, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0.689418152000079, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.87706627514812, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 1.60346477371914, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.05493304706995, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.65086992207395, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.87706627514812, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.95773910144342, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.20588954365192, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.05493304706995, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.05493304706995, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.45292912767947, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.45292912767947, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.88939249754788, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.20588954365192, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.87706627514812, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.33701858537751, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.87706627514812, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.45292912767947, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.05493304706995, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.87706627514812, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 1.093637154028, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.87706627514812, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.87706627514812, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.73685566178721, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.33701858537751, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 2.42434295654745, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.87706627514812, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.87706627514812, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 1.093637154028, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.87706627514812, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.20588954365192, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.20588954365192, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.33701858537751, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.55678912006325, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.20588954365192, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.33701858537751, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.65086992207395, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.87706627514812, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 1.093637154028, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.81602970015036, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.05493304706995, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0.689418152000079, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0.689418152000079, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 1.093637154028, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.87706627514812, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 2.5776824598579, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.87706627514812, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.20588954365192, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.87706627514812, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.87706627514812, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.33701858537751, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.45292912767947, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.87706627514812, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.33701858537751, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.81602970015036, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.87706627514812, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.45292912767947, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.05493304706995, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.55678912006325, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0.689418152000079, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.33701858537751, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.05493304706995, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.87706627514812, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.05493304706995, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.20588954365192, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0.689418152000079, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.20588954365192, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.87706627514812, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.05493304706995, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.20588954365192, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.55678912006325, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.87706627514812, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.45292912767947, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.95773910144342, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 2.33784744040733, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.05493304706995, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.87706627514812, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.87706627514812, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.81602970015036, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.81602970015036, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.87706627514812, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.87706627514812, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.55678912006325, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.20588954365192, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.20588954365192, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 2.13855107429828, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0.689418152000079, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.05493304706995, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.05493304706995, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.33701858537751, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0.689418152000079, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.73685566178721, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0.689418152000079, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.87706627514812, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.55678912006325, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0.689418152000079, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.87706627514812, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.87706627514812, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.33701858537751, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0.689418152000079, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.87706627514812, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.87706627514812, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.20588954365192, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.20588954365192, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0.689418152000079, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 2.0818368923417, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 2.13855107429828, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 2.07290658766248, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.20588954365192, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0.689418152000079, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0.689418152000079, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 2.46493788796225, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.87706627514812, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 1.093637154028, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 4.4699500232806, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 1.093637154028, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.87706627514812, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.87706627514812, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 1.093637154028, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.05493304706995, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.73685566178721, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.87706627514812, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 1.093637154028, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0.689418152000079, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.73685566178721, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 2.19222065759092, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.45292912767947, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.87706627514812, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.45292912767947, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.05493304706995, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.20588954365192, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.05493304706995, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.88939249754788, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.33701858537751, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.87706627514812, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.33701858537751, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.33701858537751, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0.689418152000079, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0.689418152000079, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.87706627514812, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0.689418152000079, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.33701858537751, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.20588954365192, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 1.093637154028, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 3.21347050775293, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.87706627514812, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.95773910144342, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.45292912767947, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 1.093637154028, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.05493304706995, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0.689418152000079, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.87706627514812, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.87706627514812, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 2.54149513400858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.33701858537751, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0.689418152000079, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.33701858537751, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.87706627514812, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.55678912006325, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.45292912767947, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 1.093637154028, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.45292912767947, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.45292912767947, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 3.57313137273787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.05493304706995, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.87706627514812, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.65086992207395, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 1.093637154028, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0.689418152000079, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.87706627514812, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.383863952871531, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.45292912767947, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0, ACTGATGGTCGGCATC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 1.20588954365192, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(ACACCCTCAAACTGCT = 0.660567911142264, :
## cannot compute exact p-value with ties
## [1] NA
## [1] "broke 0.7"
## [1] 0.6
## Warning: The following arguments are not used: pc.use
## Warning: The following arguments are not used: pc.use
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 67
## Number of edges: 2062
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.4000
## Number of communities: 1
## Elapsed time: 0 seconds
## [1] "clustering 3"
## Computing nearest neighbor graph
## Computing SNN
## 11:10:24 UMAP embedding parameters a = 0.9922 b = 1.112
## 11:10:24 Read 110 rows and found 20 numeric columns
## 11:10:24 Using Annoy for neighbor search, n_neighbors = 10
## 11:10:24 Building Annoy index with metric = cosine, n_trees = 50
## 0% 10 20 30 40 50 60 70 80 90 100%
## [----|----|----|----|----|----|----|----|----|----|
## **************************************************|
## 11:10:24 Writing NN index file to temp file /var/folders/hw/8pgn_gss7tj01n1jg_zl_sx00000gp/T//RtmpbYWP8K/file1bca62c36c81
## 11:10:24 Searching Annoy index using 1 thread, search_k = 1000
## 11:10:24 Annoy recall = 100%
## 11:10:25 Commencing smooth kNN distance calibration using 1 thread
## 11:10:25 Initializing from normalized Laplacian + noise
## 11:10:25 Commencing optimization for 500 epochs, with 1410 positive edges
## 11:10:26 Optimization finished
## [1] "Trying 0.1"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 110
## Number of edges: 3587
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.9000
## Number of communities: 1
## Elapsed time: 0 seconds
## [1] "noclusterfound 0.1"
## [1] "Trying 0.2"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 110
## Number of edges: 3587
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.8000
## Number of communities: 1
## Elapsed time: 0 seconds
## [1] "noclusterfound 0.2"
## [1] "Trying 0.3"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 110
## Number of edges: 3587
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.7000
## Number of communities: 1
## Elapsed time: 0 seconds
## [1] "noclusterfound 0.3"
## [1] "Trying 0.4"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 110
## Number of edges: 3587
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.6168
## Number of communities: 2
## Elapsed time: 0 seconds
## [1] NA
## [1] NA
## [1] "broke 0.4"
## [1] 0.3
## Warning: The following arguments are not used: pc.use
## Warning: The following arguments are not used: pc.use
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 110
## Number of edges: 3587
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.7000
## Number of communities: 1
## Elapsed time: 0 seconds
## [1] "clustering 4"
## Computing nearest neighbor graph
## Computing SNN
## 11:10:28 UMAP embedding parameters a = 0.9922 b = 1.112
## 11:10:28 Read 91 rows and found 20 numeric columns
## 11:10:28 Using Annoy for neighbor search, n_neighbors = 10
## 11:10:28 Building Annoy index with metric = cosine, n_trees = 50
## 0% 10 20 30 40 50 60 70 80 90 100%
## [----|----|----|----|----|----|----|----|----|----|
## **************************************************|
## 11:10:28 Writing NN index file to temp file /var/folders/hw/8pgn_gss7tj01n1jg_zl_sx00000gp/T//RtmpbYWP8K/file1bcac08bbcf
## 11:10:28 Searching Annoy index using 1 thread, search_k = 1000
## 11:10:28 Annoy recall = 100%
## 11:10:29 Commencing smooth kNN distance calibration using 1 thread
## 11:10:29 Initializing from normalized Laplacian + noise
## 11:10:29 Commencing optimization for 500 epochs, with 1178 positive edges
## 11:10:30 Optimization finished
## [1] "Trying 0.1"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 91
## Number of edges: 2266
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.9000
## Number of communities: 1
## Elapsed time: 0 seconds
## [1] "noclusterfound 0.1"
## [1] "Trying 0.2"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 91
## Number of edges: 2266
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.8275
## Number of communities: 2
## Elapsed time: 0 seconds
## [1] -1.105089
## [1] -1.159629
## [1] "broke 0.2"
## [1] 0.1
## Warning: The following arguments are not used: pc.use
## Warning: The following arguments are not used: pc.use
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 91
## Number of edges: 2266
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.9000
## Number of communities: 1
## Elapsed time: 0 seconds
## [1] "clustering 5"
## Computing nearest neighbor graph
## Computing SNN
## 11:10:33 UMAP embedding parameters a = 0.9922 b = 1.112
## 11:10:33 Read 53 rows and found 20 numeric columns
## 11:10:33 Using Annoy for neighbor search, n_neighbors = 10
## 11:10:33 Building Annoy index with metric = cosine, n_trees = 50
## 0% 10 20 30 40 50 60 70 80 90 100%
## [----|----|----|----|----|----|----|----|----|----|
## **************************************************|
## 11:10:33 Writing NN index file to temp file /var/folders/hw/8pgn_gss7tj01n1jg_zl_sx00000gp/T//RtmpbYWP8K/file1bca11621935
## 11:10:33 Searching Annoy index using 1 thread, search_k = 1000
## 11:10:33 Annoy recall = 100%
## 11:10:34 Commencing smooth kNN distance calibration using 1 thread
## 11:10:34 Initializing from normalized Laplacian + noise
## 11:10:34 Commencing optimization for 500 epochs, with 574 positive edges
## 11:10:35 Optimization finished
## [1] "Trying 0.1"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 53
## Number of edges: 1256
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.9000
## Number of communities: 1
## Elapsed time: 0 seconds
## [1] "noclusterfound 0.1"
## [1] "Trying 0.2"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 53
## Number of edges: 1256
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.8000
## Number of communities: 1
## Elapsed time: 0 seconds
## [1] "noclusterfound 0.2"
## [1] "Trying 0.3"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 53
## Number of edges: 1256
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.7000
## Number of communities: 1
## Elapsed time: 0 seconds
## [1] "noclusterfound 0.3"
## [1] "Trying 0.4"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 53
## Number of edges: 1256
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.6000
## Number of communities: 1
## Elapsed time: 0 seconds
## [1] "noclusterfound 0.4"
## [1] "Trying 0.5"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 53
## Number of edges: 1256
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.5000
## Number of communities: 1
## Elapsed time: 0 seconds
## [1] "noclusterfound 0.5"
## [1] "Trying 0.6"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 53
## Number of edges: 1256
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.4208
## Number of communities: 2
## Elapsed time: 0 seconds
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.34814224327076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.06477189025563, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.327097723326054, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.327097723326054, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.16840994840694, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.06477189025563, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.42718729307842, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.50043933700834, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.16840994840694, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.06477189025563, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.06477189025563, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.93520984216892, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 2.03478678501745, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.676683655736503, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.63257828184554, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.90218693364079, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 2.11432753389457, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.457681465997373, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.573165862938534, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.06477189025563, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.327097723326054, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.34814224327076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.176863776274795, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.176863776274795, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.676683655736503, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.50043933700834, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.06477189025563, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.176863776274795, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.457681465997373, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.327097723326054, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.26230863469585, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.573165862938534, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.176863776274795, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.176863776274795, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.06477189025563, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.327097723326054, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.327097723326054, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.16840994840694, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.56868981096952, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.34814224327076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.176863776274795, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.176863776274795, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.573165862938534, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.80288725837007, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.74927696048262, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.16840994840694, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.26230863469585, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.56868981096952, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.63257828184554, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 2.07534779240872, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.573165862938534, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.06477189025563, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.06477189025563, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.573165862938534, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.457681465997373, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.327097723326054, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.06477189025563, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.176863776274795, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.26230863469585, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.327097723326054, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.42718729307842, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.06477189025563, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.176863776274795, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 1.00840181089847, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.16840994840694, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.26230863469585, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.16840994840694, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.176863776274795, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.16840994840694, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.34814224327076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.63257828184554, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.16840994840694, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.16840994840694, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.06477189025563, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.16840994840694, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 2.38117286347445, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.16840994840694, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.457681465997373, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.457681465997373, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.42718729307842, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.16840994840694, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.42718729307842, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.06477189025563, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.85376914313089, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.176863776274795, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.06477189025563, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.06477189025563, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.457681465997373, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.26230863469585, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.50043933700834, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.26230863469585, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.26230863469585, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.06477189025563, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.176863776274795, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.457681465997373, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 2.15184468817655, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.50043933700834, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.457681465997373, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.26230863469585, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.16840994840694, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.16840994840694, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.94836830739826, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.26230863469585, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 2.18800505501856, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.42718729307842, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 2.15184468817655, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 2.63795280729936, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.327097723326054, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.327097723326054, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.327097723326054, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.327097723326054, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.50043933700834, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.85376914313089, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 1.25706528403743, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.26230863469585, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.457681465997373, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.42718729307842, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.06477189025563, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 2.70368293842246, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.69262897877211, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.16840994840694, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.63257828184554, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.06477189025563, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.26230863469585, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.94836830739826, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.327097723326054, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.85376914313089, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.06477189025563, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.94836830739826, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 2.28924595084686, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.176863776274795, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.573165862938534, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.16840994840694, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.16840994840694, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.06477189025563, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.50043933700834, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.457681465997373, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 1.07660013347604, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.69262897877211, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.94836830739826, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.176863776274795, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.80288725837007, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.63257828184554, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.74927696048262, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.16840994840694, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.56868981096952, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.80288725837007, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 2.18800505501856, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.16840994840694, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.34814224327076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.176863776274795, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.34814224327076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.16840994840694, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.74927696048262, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.573165862938534, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.42718729307842, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 2.25662471901013, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.42718729307842, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.16840994840694, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.26230863469585, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.34814224327076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.80288725837007, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 1.07660013347604, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.176863776274795, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.69262897877211, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.770483623430482, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.327097723326054, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.63257828184554, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.327097723326054, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.176863776274795, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.16840994840694, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.42718729307842, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.176863776274795, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.26230863469585, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.16840994840694, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.34814224327076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 2.32083656929387, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.34814224327076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.34814224327076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.06477189025563, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.16840994840694, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.26230863469585, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.327097723326054, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.457681465997373, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.176863776274795, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.06477189025563, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.56868981096952, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.16840994840694, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.42718729307842, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 2.03478678501745, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 2.15184468817655, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.457681465997373, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.80288725837007, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.42718729307842, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.676683655736503, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.176863776274795, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.176863776274795, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.16840994840694, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.16840994840694, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.16840994840694, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.573165862938534, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.06477189025563, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.06477189025563, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.06477189025563, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.06477189025563, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.74927696048262, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.50043933700834, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.06477189025563, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.327097723326054, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.06477189025563, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.327097723326054, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.63257828184554, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.99251077502565, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.176863776274795, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.327097723326054, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.176863776274795, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.06477189025563, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.34814224327076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.176863776274795, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.26230863469585, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.06477189025563, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.327097723326054, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.42718729307842, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.16840994840694, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.06477189025563, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.176863776274795, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.56868981096952, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.42718729307842, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.16840994840694, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 2.15184468817655, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.176863776274795, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.16840994840694, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.26230863469585, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.176863776274795, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.50043933700834, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.34814224327076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.63257828184554, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.74927696048262, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 2.35145970592424, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.06477189025563, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.327097723326054, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 2.18800505501856, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.16840994840694, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.676683655736503, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.26230863469585, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 2.28924595084686, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.16840994840694, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 2.22290335386,
## ACGAGCCGTATAGGTA = 1.97282914642612, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 2.54299946727504, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.74927696048262, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.327097723326054, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.90218693364079, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.176863776274795, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.457681465997373, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.16840994840694, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.327097723326054, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.16840994840694, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.74927696048262, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.16840994840694, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.26230863469585, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.16840994840694, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.176863776274795, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.457681465997373, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.93520984216892, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.770483623430482, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.74927696048262, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.176863776274795, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.06477189025563, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.69262897877211, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 1.00840181089847, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.770483623430482, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.676683655736503, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.26230863469585, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.42718729307842, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.176863776274795, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 1.07660013347604, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.85376914313089, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.176863776274795, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.42718729307842, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.676683655736503, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.457681465997373, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.06477189025563, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.94836830739826, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.06477189025563, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.06477189025563, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 1.54242199189669, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.50043933700834, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.06477189025563, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.856234745753577, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.457681465997373, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.06477189025563, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.457681465997373, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.06477189025563, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 2.03478678501745, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.856234745753577, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.06477189025563, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.42718729307842, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 2.25662471901013, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.16840994840694, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.34814224327076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.34814224327076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.34814224327076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.176863776274795, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.676683655736503, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.327097723326054, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.16840994840694, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.06477189025563, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.50043933700834, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.16840994840694, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.16840994840694, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.26230863469585, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.457681465997373, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.06477189025563, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.327097723326054, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.676683655736503, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.42718729307842, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.42718729307842, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.06477189025563, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.34814224327076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.176863776274795, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.16840994840694, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.26230863469585, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.34814224327076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.34814224327076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.26230863469585, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.176863776274795, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.16840994840694, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.42718729307842, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.06477189025563, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.94836830739826, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.63257828184554, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.85376914313089, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.16840994840694, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.16840994840694, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.16840994840694, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.16840994840694, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.42718729307842, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.06477189025563, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.16840994840694, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.176863776274795, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.176863776274795, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.16840994840694, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.99251077502565, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.06477189025563, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.34814224327076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.16840994840694, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.34814224327076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.26230863469585, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.42718729307842, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.06477189025563, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.50043933700834, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.42718729307842, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.26230863469585, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.327097723326054, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.06477189025563, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.06477189025563, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.770483623430482, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 2.38117286347445, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.06477189025563, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.94836830739826, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.06477189025563, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.06477189025563, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.42718729307842, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 2.18800505501856, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.63257828184554, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.176863776274795, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.50043933700834, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.06477189025563, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 2.07534779240872, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.06477189025563, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.69262897877211, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 2.11432753389457, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.26230863469585, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.16840994840694, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.26230863469585, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.69262897877211, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.06477189025563, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.457681465997373, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.94836830739826, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.63257828184554, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.06477189025563, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.676683655736503, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.34814224327076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.16840994840694, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.06477189025563, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.06477189025563, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.26230863469585, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.50043933700834, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.573165862938534, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.56868981096952, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 2.15184468817655, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.457681465997373, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.26230863469585, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.80288725837007, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.50043933700834, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.42718729307842, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.06477189025563, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.34814224327076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.770483623430482, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.06477189025563, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.16840994840694, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.16840994840694, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.34814224327076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.26230863469585, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.16840994840694, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.26230863469585, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.16840994840694, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.176863776274795, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.176863776274795, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.26230863469585, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.26230863469585, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.457681465997373, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.16840994840694, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.80288725837007, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.26230863469585, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.327097723326054, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.34814224327076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.26230863469585, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.457681465997373, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.16840994840694, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.34814224327076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.69262897877211, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.327097723326054, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.176863776274795, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.457681465997373, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.06477189025563, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.770483623430482, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.26230863469585, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.42718729307842, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.50043933700834, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.16840994840694, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.26230863469585, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.26230863469585, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.06477189025563, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.327097723326054, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.06477189025563, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.457681465997373, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.42718729307842, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.176863776274795, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.80288725837007, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.74927696048262, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.69262897877211, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.327097723326054, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.06477189025563, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.50043933700834, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.34814224327076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.34814224327076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.176863776274795, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.06477189025563, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.42718729307842, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.26230863469585, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.42718729307842, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.63257828184554, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.85376914313089, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.26230863469585, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.676683655736503, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.50043933700834, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.06477189025563, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.06477189025563, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.94836830739826, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.06477189025563, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.06477189025563, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 2.18800505501856, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.16840994840694, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.176863776274795, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.676683655736503, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.16840994840694, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 2.22290335386,
## ACGAGCCGTATAGGTA = 1.73045909161597, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.16840994840694, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.06477189025563, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.16840994840694, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.50043933700834, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.06477189025563, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.770483623430482, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.50043933700834, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.26230863469585, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.26230863469585, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.42718729307842, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.06477189025563, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.06477189025563, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.42718729307842, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.26230863469585, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.26230863469585, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.34814224327076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.69262897877211, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.457681465997373, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.74927696048262, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.50043933700834, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.90218693364079, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.56868981096952, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.90218693364079, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.63257828184554, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.50043933700834, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 1.1404429060706, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.34814224327076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.06477189025563, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.34814224327076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.457681465997373, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 2.25662471901013, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.26230863469585, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.16840994840694, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.16840994840694, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 2.35145970592424, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.16840994840694, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.06477189025563, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.457681465997373, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.74927696048262, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.06477189025563, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.26230863469585, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 2.70368293842246, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.176863776274795, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.06477189025563, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.26230863469585, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.26230863469585, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.50043933700834, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.56868981096952, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 2.11432753389457, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.26230863469585, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.573165862938534, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.457681465997373, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.34814224327076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.176863776274795, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.327097723326054, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.770483623430482, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.06477189025563, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.56868981096952, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.06477189025563, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 2.25662471901013, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.34814224327076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.16840994840694, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.42718729307842, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.50043933700834, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.34814224327076, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.50043933700834, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.327097723326054, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.16840994840694, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 2.70368293842246, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.26230863469585, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 2.03478678501745, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.69262897877211, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.85376914313089, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 2.35145970592424, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.457681465997373, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.26230863469585, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.63257828184554, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.63257828184554, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.16840994840694, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.56868981096952, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 3.64727993207868, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.16840994840694, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.573165862938534, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.26230863469585, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.16840994840694, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.457681465997373, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.176863776274795, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.26230863469585, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.176863776274795, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.06477189025563, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.26230863469585, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.327097723326054, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.94836830739826, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.770483623430482, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.176863776274795, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.26230863469585, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 2.32083656929387, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.327097723326054, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.176863776274795, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0, ACGAGCCGTATAGGTA =
## 0.457681465997373, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.490659109647773, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.16840994840694, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.16840994840694, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.275125739345595, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.26230863469585, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.818362483884749, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.74927696048262, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.16840994840694, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 1.63257828184554, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.949137762701379, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGTTCGTTTAGCTG = 0.66787484587147, :
## cannot compute exact p-value with ties
## [1] NA
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 1.15332991646538, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 1.15332991646538, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 1.00612469574917, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.53550089697971, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 1.39530805053726, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 1.39530805053726, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.62459570248946, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.99828424271517, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.53550089697971, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 1.00612469574917, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.62459570248946, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.62459570248946, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.833446445666885, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 1.28162037328437, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.62459570248946, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.62459570248946, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.71461987325599, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.62459570248946, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.71461987325599, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.53550089697971, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.62459570248946, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.53550089697971, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.71461987325599, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 1.75287991091612, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 1.39530805053726, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 2.97813086525796, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.62459570248946, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.99828424271517, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.86647669974242, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.833446445666885, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 1.00612469574917, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.833446445666885, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 1.00612469574917, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 1.39530805053726, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 2.0719039884758, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.62459570248946, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.86647669974242, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 1.67474874424152, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.833446445666885, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 2.31343871334258, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.62459570248946, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.53550089697971, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.53550089697971, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 1.67474874424152, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 1.00612469574917, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.53550089697971, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.53550089697971, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 2.31343871334258, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.86647669974242, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 2.62124086070839, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.99828424271517, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.71461987325599, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 1.00612469574917, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 2.57603164153009, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 6.23992405214321, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 6.00128979256873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 5.53683636047889, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 5.07361518415304, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 1.15332991646538, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 3.78284313129185, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 4.29048320773673, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 5.20806065106542, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 4.05734591398394, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 1.89291466826153, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 4.51326366281664, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 2.31343871334258, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 1.15332991646538, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 3.75278240409318, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.71461987325599, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 1.15332991646538, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 2.31343871334258, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 2.2695357121629, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.71461987325599, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 1.00612469574917, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.62459570248946, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 1.15332991646538, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 2.31339181155341, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.62459570248946, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 2.11472444891916, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.99828424271517, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.53550089697971, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 2.21900940120477, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 1.95620490154653, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 2.2695357121629, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 4.03540238444716, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.86647669974242, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.62459570248946, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.99828424271517, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 1.00612469574917, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 1.15332991646538, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 3.19549464865096, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.53550089697971, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.62459570248946, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 1.82534650604032, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 1.00612469574917, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 2.62124086070839, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 1.75287991091612, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 2.01572679738869, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.53550089697971, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 1.00612469574917, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.833446445666885, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.86647669974242, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.53550089697971, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 2.2695357121629, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.833446445666885, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.53550089697971, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 2.2695357121629, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.71461987325599, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 2.35540508951998, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.62459570248946, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.86647669974242, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 3.31267464054668, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.62459570248946, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 2.17559421264719, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.833446445666885, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.833446445666885, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.62459570248946, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.53550089697971, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 2.47179057443637, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 1.82534650604032, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 2.31343871334258, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 1.15332991646538, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.833446445666885, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.62459570248946, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.99828424271517, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.53550089697971, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 2.31343871334258, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.62459570248946, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.71461987325599, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 1.49738016063659, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.71461987325599, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.53550089697971, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 1.00612469574917, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 1.15332991646538, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.71461987325599, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.99828424271517, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.99828424271517, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.53550089697971, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 1.00612469574917, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.833446445666885, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.53550089697971, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 1.82534650604032, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 1.00612469574917, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.86647669974242, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 2.11472444891916, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 1.75287991091612, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.62459570248946, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.86647669974242, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.62459570248946, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 2.50775855939153, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.62459570248946, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.833446445666885, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.86647669974242, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.53550089697971, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 1.49738016063659, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.71461987325599, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 2.17559421264719, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.53550089697971, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.62459570248946, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 2.97813086525796, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.62459570248946, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.53550089697971, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 1.39530805053726, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 2.21900940120477, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.53550089697971, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.99828424271517, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.53550089697971, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.86647669974242, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.53550089697971, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.53550089697971, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 2.21900940120477, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.62459570248946, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.833446445666885, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 1.15332991646538, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.71461987325599, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.833446445666885, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.62459570248946, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.833446445666885, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.62459570248946, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 1.28162037328437, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.62459570248946, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.53550089697971, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 1.00612469574917, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 2.01572679738869, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.71461987325599, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.86647669974242, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.86647669974242, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.62459570248946, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 2.90730217920467, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.71461987325599, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.62459570248946, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 1.28162037328437, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.62459570248946, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.53550089697971, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.86647669974242, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.71461987325599, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 1.00612469574917, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.833446445666885, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 1.58999176030487, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 1.28162037328437, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 1.58999176030487, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.71461987325599, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 1.49738016063659, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.53550089697971, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.833446445666885, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.71461987325599, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.71461987325599, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 2.3997154407563, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 1.00612469574917, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.86647669974242, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.71461987325599, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.99828424271517, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.62459570248946, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 2.2695357121629, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.53550089697971, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.86647669974242, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 2.31339181155341, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 4.37372344808204, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 1.00612469574917, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 4.65902028270576, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.53550089697971, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.53550089697971, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.53550089697971, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 1.49738016063659, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.53550089697971, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.53550089697971, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 3.20614436664485, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.53550089697971, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.71461987325599, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.86647669974242, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 2.11472444891916, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 2.11472444891916, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 1.28162037328437, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 1.28162037328437, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 1.58999176030487, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.53550089697971, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 1.00612469574917, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.71461987325599, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.53550089697971, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 3.59801329283096, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.71461987325599, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 2.62124086070839, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.71461987325599, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 2.21900940120477, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.53550089697971, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.71461987325599, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 2.62124086070839, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.86647669974242, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 2.21900940120477, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.833446445666885, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.53550089697971, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.71461987325599, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.53550089697971, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.53550089697971, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 1.49738016063659, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.86647669974242, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 2.47913610003883, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.71461987325599, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 1.00612469574917, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.86647669974242, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.62459570248946, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 3.04642919776342, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.53550089697971, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.71461987325599, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.53550089697971, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 2.2695357121629, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 1.39530805053726, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.86647669974242, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 1.28162037328437, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.833446445666885, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 2.31343871334258, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 1.15332991646538, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 3.14074194267694, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.53550089697971, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.53550089697971, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 1.00612469574917, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 2.62124086070839, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.833446445666885, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.62459570248946, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 1.95620490154653, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.53550089697971, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 2.85626496803876, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.53550089697971, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.71461987325599, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.53550089697971, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.86647669974242, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.53550089697971, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 4.65247402459744, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.53550089697971, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 2.31343871334258, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 1.00612469574917, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.62459570248946, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.53550089697971, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.62459570248946, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.62459570248946, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.62459570248946, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.62459570248946, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.62459570248946, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.71461987325599, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.62459570248946, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 1.49738016063659, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.360290175126873, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.71461987325599, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 1.58999176030487, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0.833446445666885, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0.647580999411715, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.86647669974242, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 0, AAGGAGCTCCAAGCCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.31714206719731, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAATGCCCAGATTGCT = 1.03738400499787, :
## cannot compute exact p-value with ties
## [1] NA
## [1] "broke 0.6"
## [1] 0.5
## Warning: The following arguments are not used: pc.use
## Warning: The following arguments are not used: pc.use
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 53
## Number of edges: 1256
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.5000
## Number of communities: 1
## Elapsed time: 0 seconds
## [1] "clustering 6"
## Computing nearest neighbor graph
## Computing SNN
## 11:10:45 UMAP embedding parameters a = 0.9922 b = 1.112
## 11:10:45 Read 45 rows and found 20 numeric columns
## 11:10:45 Using Annoy for neighbor search, n_neighbors = 10
## 11:10:45 Building Annoy index with metric = cosine, n_trees = 50
## 0% 10 20 30 40 50 60 70 80 90 100%
## [----|----|----|----|----|----|----|----|----|----|
## **************************************************|
## 11:10:45 Writing NN index file to temp file /var/folders/hw/8pgn_gss7tj01n1jg_zl_sx00000gp/T//RtmpbYWP8K/file1bca3f64ef7d
## 11:10:45 Searching Annoy index using 1 thread, search_k = 1000
## 11:10:45 Annoy recall = 100%
## 11:10:45 Commencing smooth kNN distance calibration using 1 thread
## 11:10:46 Initializing from normalized Laplacian + noise
## 11:10:46 Commencing optimization for 500 epochs, with 600 positive edges
## 11:10:46 Optimization finished
## [1] "Trying 0.1"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 45
## Number of edges: 863
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.9000
## Number of communities: 1
## Elapsed time: 0 seconds
## [1] "noclusterfound 0.1"
## [1] "Trying 0.2"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 45
## Number of edges: 863
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.8000
## Number of communities: 1
## Elapsed time: 0 seconds
## [1] "noclusterfound 0.2"
## [1] "Trying 0.3"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 45
## Number of edges: 863
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.7000
## Number of communities: 1
## Elapsed time: 0 seconds
## [1] "noclusterfound 0.3"
## [1] "Trying 0.4"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 45
## Number of edges: 863
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.6041
## Number of communities: 2
## Elapsed time: 0 seconds
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.468095301801208, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.335018603278168, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.49314060102534, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.335018603278168, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.639442761435922, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.468095301801208, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.0948478892686599, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.528532636525593, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.181473860825487, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.585524543498377, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.72301717849412, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.335018603278168, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.0948478892686599, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.26119034015225, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.639442761435922, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.40376899697307, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.26119034015225, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.49314060102534, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.26119034015225, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.26119034015225, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.26119034015225, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.468095301801208, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.26119034015225, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.26119034015225, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.785680406017985, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.528532636525593, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.72301717849412, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.639442761435922, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.40376899697307, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.335018603278168, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.49314060102534, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.49314060102534, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 1.02634576563418, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.0948478892686599, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.0948478892686599, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.0948478892686599, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.0948478892686599, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.40376899697307, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.468095301801208, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.181473860825487, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.335018603278168, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 2.61402222358095, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.739270734043242, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.585524543498377, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.26119034015225, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.26119034015225, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.40376899697307, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.739270734043242, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.0948478892686599, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.872498652299666, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.26119034015225, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.40376899697307, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.990045588648165, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.0948478892686599, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.40376899697307, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.26119034015225, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.40376899697307, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.0948478892686599, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.990045588648165, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.0948478892686599, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.0948478892686599, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.468095301801208, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.585524543498377, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.690601933838671, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.0948478892686599, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.785680406017985, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.0948478892686599, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.49314060102534, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.468095301801208, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.26119034015225, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.72301717849412, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.639442761435922, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.181473860825487, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.335018603278168, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.639442761435922, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.26119034015225, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.40376899697307, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.49314060102534, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.49314060102534, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.0948478892686599, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.913235657490522, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.181473860825487, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.181473860825487, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.0948478892686599, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.26119034015225, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.181473860825487, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.181473860825487, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.0948478892686599, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.468095301801208, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.26119034015225, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.181473860825487, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.785680406017985, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.0948478892686599, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.49314060102534, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.181473860825487, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.468095301801208, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.40376899697307, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.49314060102534, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.830031409394826, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.468095301801208, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.181473860825487, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.26119034015225, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.26119034015225, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.181473860825487, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.181473860825487, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.528532636525593, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.26119034015225, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.0948478892686599, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.90980236520033, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.181473860825487, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.0948478892686599, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.26119034015225, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.40376899697307, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.72301717849412, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.690601933838671, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.40376899697307, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.0948478892686599, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.468095301801208, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.49314060102534, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.49314060102534, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.0948478892686599, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.26119034015225, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.0948478892686599, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.90980236520033, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.49314060102534, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.468095301801208, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.690601933838671, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.26119034015225, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.335018603278168, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.49314060102534, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.181473860825487, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.26119034015225, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.0948478892686599, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.26119034015225, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.181473860825487, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.26119034015225, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 2.06712919765471, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.181473860825487, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.181473860825487, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.40376899697307, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.335018603278168, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.181473860825487, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.72301717849412, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.0948478892686599, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 1.4547057009795, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.585524543498377, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.468095301801208, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.335018603278168, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.181473860825487, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.639442761435922, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.26119034015225, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.181473860825487, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.26119034015225, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 2.42949591784161, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.26119034015225, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.335018603278168, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.40376899697307, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.26119034015225, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.26119034015225, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.26119034015225, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.49314060102534, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.739270734043242, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.72301717849412, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.335018603278168, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.639442761435922, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.785680406017985, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.639442761435922, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.690601933838671, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.26119034015225, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.528532636525593, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.26119034015225, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.639442761435922, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.49314060102534, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.690601933838671, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.830031409394826, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.40376899697307, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.335018603278168, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.49314060102534, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.528532636525593, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.785680406017985, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.181473860825487, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.468095301801208, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.181473860825487, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.335018603278168, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.26119034015225, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.181473860825487, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 2.20303610200842, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.335018603278168, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.181473860825487, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.528532636525593, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.90980236520033, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.585524543498377, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.585524543498377, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.72301717849412, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.0948478892686599, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.49314060102534, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.468095301801208, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.26119034015225, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.26119034015225, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.468095301801208, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.639442761435922, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.0948478892686599, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.335018603278168, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.40376899697307, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.335018603278168, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.40376899697307, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.0948478892686599, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.40376899697307, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.585524543498377, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.40376899697307, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.90980236520033, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.528532636525593, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.72301717849412, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.528532636525593, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.0948478892686599, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.690601933838671, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.181473860825487, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.585524543498377, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.26119034015225, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.72301717849412, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.26119034015225, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.49314060102534, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.468095301801208, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.26119034015225, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.181473860825487, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.181473860825487, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.335018603278168, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.0948478892686599, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.830031409394826, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.528532636525593, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.0948478892686599, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.785680406017985, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.0948478892686599, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.335018603278168, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.0948478892686599, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.468095301801208, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.785680406017985, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.26119034015225, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.335018603278168, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.181473860825487, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.49314060102534, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.335018603278168, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 2.32266286440433, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.181473860825487, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.26119034015225, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.72301717849412, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.26119034015225, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 2.20303610200842, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.0948478892686599, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.72301717849412, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 2.96556239081817, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.40376899697307, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.913235657490522, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.40376899697307, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.739270734043242, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.181473860825487, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.90980236520033, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 1.22018025625501, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 2.20303610200842, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.26119034015225, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.90980236520033, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.468095301801208, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.26119034015225, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.785680406017985, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.40376899697307, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.40376899697307, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.335018603278168, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.26119034015225, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.72301717849412, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.0948478892686599, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 1.12795215323117, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.468095301801208, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.181473860825487, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 2.06712919765471, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.0948478892686599, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.49314060102534, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.0948478892686599, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.468095301801208, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.49314060102534, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.72301717849412, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.49314060102534, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.26119034015225, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.335018603278168, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.181473860825487, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.335018603278168, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.0948478892686599, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.26119034015225, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.528532636525593, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.0948478892686599, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.90980236520033, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.181473860825487, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.739270734043242, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.40376899697307, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.40376899697307, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.181473860825487, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.181473860825487, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.913235657490522, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.49314060102534, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.0948478892686599, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.181473860825487, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.335018603278168, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.690601933838671, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.72301717849412, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.26119034015225, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.49314060102534, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.90980236520033, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.181473860825487, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.181473860825487, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.181473860825487, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 2.32266286440433, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.181473860825487, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.49314060102534, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.830031409394826, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.26119034015225, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.26119034015225, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.26119034015225, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.468095301801208, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.40376899697307, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.40376899697307, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.335018603278168, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.181473860825487, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.181473860825487, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 1.82027615788059, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.335018603278168, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.49314060102534, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.49314060102534, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.585524543498377, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.49314060102534, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.49314060102534, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.0948478892686599, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.585524543498377, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.49314060102534, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.0948478892686599, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.40376899697307, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.739270734043242, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.952377912543497, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.181473860825487, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.528532636525593, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.830031409394826, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.181473860825487, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.72301717849412, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.49314060102534, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.528532636525593, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.639442761435922, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.49314060102534, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.72301717849412, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 2.06712919765471, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.26119034015225, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.0948478892686599, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 2.20303610200842, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.181473860825487, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.0948478892686599, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.0948478892686599, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.72301717849412, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 2.32266286440433, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.40376899697307, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.0948478892686599, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.181473860825487, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.49314060102534, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.40376899697307, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.0948478892686599, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.181473860825487, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.468095301801208, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.26119034015225, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.26119034015225, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.0948478892686599, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.40376899697307, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.181473860825487, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.90980236520033, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.913235657490522, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.690601933838671, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.468095301801208, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.90980236520033, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.49314060102534, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.0948478892686599, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.639442761435922, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.40376899697307, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.528532636525593, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.40376899697307, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.0948478892686599, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.335018603278168, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.335018603278168, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.181473860825487, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.0948478892686599, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.468095301801208, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.49314060102534, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.40376899697307, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.181473860825487, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.585524543498377, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.690601933838671, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.49314060102534, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.0948478892686599, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.585524543498377, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.585524543498377, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.26119034015225, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.40376899697307, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 1.66357351874865, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.40376899697307, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.0948478892686599, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.0948478892686599, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.0948478892686599, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.468095301801208, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.181473860825487, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.40376899697307, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.468095301801208, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 1.12795215323117, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.0948478892686599, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.0948478892686599, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.585524543498377, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.49314060102534, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.181473860825487, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.335018603278168, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.639442761435922, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 1.5220695682434, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 1.56458294672235, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 2.66940401287863, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.335018603278168, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 1.35718896365115, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.639442761435922, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.639442761435922, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 1.02634576563418, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.690601933838671, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.0948478892686599, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.181473860825487, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 2.20303610200842, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.0948478892686599, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.90980236520033, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.585524543498377, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.26119034015225, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.528532636525593, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.40376899697307, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.639442761435922, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.26119034015225, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.0948478892686599, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.528532636525593, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.26119034015225, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.40376899697307, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 2.06712919765471, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.690601933838671, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.0948478892686599, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.335018603278168, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.690601933838671, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.26119034015225, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.26119034015225, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.0948478892686599, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.26119034015225, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.181473860825487, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.528532636525593, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.49314060102534, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.181473860825487, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.181473860825487, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.49314060102534, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.585524543498377, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.181473860825487, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.913235657490522, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 2.0367867568562, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.585524543498377, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.181473860825487, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.528532636525593, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.468095301801208, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.181473860825487, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.990045588648165, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.0948478892686599, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.26119034015225, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.468095301801208, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 1.70057976355186, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.181473860825487, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.872498652299666, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.585524543498377, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.528532636525593, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 2.52600929053253, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.0948478892686599, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.26119034015225, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.181473860825487, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.181473860825487, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.0948478892686599, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.181473860825487, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.335018603278168, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.181473860825487, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 2.42949591784161, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 2.8393656736142, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.0948478892686599, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.872498652299666, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.26119034015225, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.335018603278168, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.26119034015225, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.181473860825487, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.26119034015225, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.0948478892686599, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.335018603278168, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.690601933838671, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.49314060102534, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 1.09521718471659, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.830031409394826, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.335018603278168, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.72301717849412, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 1.56458294672235, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.181473860825487, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.40376899697307, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.181473860825487, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.690601933838671, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.0948478892686599, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.0948478892686599, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.26119034015225, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.26119034015225, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.181473860825487, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.639442761435922, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.585524543498377, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.49314060102534, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.0948478892686599, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.0948478892686599, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.0948478892686599, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.26119034015225, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.335018603278168, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.181473860825487, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.335018603278168, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.49314060102534, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.49314060102534, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.49314060102534, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.468095301801208, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.585524543498377, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.585524543498377, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.49314060102534, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.0948478892686599, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.181473860825487, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.49314060102534, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.40376899697307, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.181473860825487, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.335018603278168, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.468095301801208, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.72301717849412, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.90980236520033, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 2.06712919765471, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.26119034015225, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.785680406017985, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.19413508648059, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.26119034015225, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.468095301801208, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.639442761435922, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.0948478892686599, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.181473860825487, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.335018603278168, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.49314060102534, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.335018603278168, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.0948478892686599, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.40376899697307, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.335018603278168, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0.765631018133267, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 0, ACACCGGGTTATCACG =
## 0.181473860825487, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.72301717849412, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAGGAGCGTTGTCGCG = 1.90980236520033, :
## cannot compute exact p-value with ties
## [1] NA
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.88243456812075, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.88243456812075, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 1.16976482846486, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 2.07466126774336, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.980551560082781, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.88243456812075, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.88243456812075, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 1.16976482846486, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 1.16976482846486, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.64424687740413, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 1.16976482846486, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 1.46599528192839, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.64424687740413, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 3.20559955707204, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 2.7921503859261, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.980551560082781, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.64424687740413, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 1.32880924171063, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 1.16976482846486, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 2.07466126774336, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 1.16976482846486, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.88243456812075, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 2.07466126774336, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 2.07466126774336, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.980551560082781, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 2.49641999178474, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.64424687740413, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.64424687740413, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 3.90666755999145, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.64424687740413, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.64424687740413, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 2.07466126774336, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.64424687740413, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 1.16976482846486, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 1.5866116158327, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.88243456812075, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 2.07466126774336, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 2.49641999178474, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 3.02009202040506, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 1.32880924171063, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 2.23582745870222, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.64424687740413, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 1.32880924171063, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.64424687740413, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.64424687740413, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.980551560082781, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 2.37458837341891, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.64424687740413, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.64424687740413, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.64424687740413, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 2.23582745870222, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.980551560082781, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.980551560082781, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 2.07466126774336, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.980551560082781, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.88243456812075, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.980551560082781, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.64424687740413, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 2.37458837341891, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.88243456812075, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.88243456812075, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.88243456812075, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.64424687740413, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.88243456812075, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.980551560082781, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.64424687740413, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.64424687740413, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.980551560082781, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.64424687740413, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.980551560082781, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.88243456812075, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.88243456812075, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.64424687740413, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 2.23582745870222, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 2.07466126774336, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.980551560082781, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.980551560082781, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.88243456812075, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.980551560082781, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 2.07466126774336, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.980551560082781, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 1.32880924171063, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.64424687740413, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.64424687740413, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 1.79138919485051, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 1.87993631517332, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.980551560082781, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.88243456812075, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.64424687740413, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.64424687740413, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.980551560082781, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 2.07466126774336, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.64424687740413, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 2.29101238949794, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.64424687740413, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.64424687740413, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.64424687740413, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 2.07466126774336, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.980551560082781, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 3.36201973822092, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.980551560082781, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.980551560082781, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.980551560082781, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 1.46599528192839, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 1.16976482846486, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.64424687740413, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 1.16976482846486, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.64424687740413, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.64424687740413, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.64424687740413, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.64424687740413, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.980551560082781, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.88243456812075, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.64424687740413, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.64424687740413, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.88243456812075, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 2.07466126774336, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 2.07466126774336, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.88243456812075, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 2.07466126774336, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.88243456812075, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.88243456812075, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.980551560082781, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 1.32880924171063, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 2.07466126774336, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 1.32880924171063, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 1.16976482846486, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 1.32880924171063, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.980551560082781, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.980551560082781, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.980551560082781, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 1.16976482846486, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.64424687740413, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 2.37458837341891, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 2.07466126774336, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.88243456812075, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 2.07466126774336, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.980551560082781, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 2.37458837341891, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.88243456812075, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.980551560082781, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.88243456812075, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 2.80630422817822, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 1.32880924171063, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.980551560082781, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.64424687740413, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 2.07466126774336, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 1.16976482846486, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 1.5866116158327, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 1.32880924171063, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 2.23582745870222, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.88243456812075, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.88243456812075, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 1.32880924171063, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.64424687740413, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.64424687740413, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 2.37458837341891, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 2.49641999178474, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.64424687740413, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.64424687740413, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.980551560082781, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.64424687740413, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 1.16976482846486, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 2.23582745870222, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.88243456812075, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.64424687740413, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.88243456812075, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 2.60500761332842, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 1.32880924171063, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 1.16976482846486, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.64424687740413, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.64424687740413, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.64424687740413, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.64424687740413, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.64424687740413, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 1.16976482846486, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.980551560082781, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.64424687740413, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.64424687740413, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.64424687740413, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.64424687740413, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 2.37458837341891, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.64424687740413, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 2.07466126774336, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 2.49641999178474, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 1.46599528192839, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.980551560082781, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.33097709372926, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.441674080047933, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.64424687740413, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.746980560280189, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0, AAAGATGCAGGAATCG =
## 0.980551560082781, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 1.64424687740413, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AAACGGGTCCCTCAGT = 0.872284428411974, :
## cannot compute exact p-value with ties
## [1] NA
## [1] "broke 0.4"
## [1] 0.3
## Warning: The following arguments are not used: pc.use
## Warning: The following arguments are not used: pc.use
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 45
## Number of edges: 863
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.7000
## Number of communities: 1
## Elapsed time: 0 seconds
## [1] "clustering 7"
## Warning in simpleLoess(y, x, w, span, degree = degree, parametric =
## parametric, : pseudoinverse used at -1.5509
## Warning in simpleLoess(y, x, w, span, degree = degree, parametric =
## parametric, : neighborhood radius 0.49649
## Warning in simpleLoess(y, x, w, span, degree = degree, parametric =
## parametric, : reciprocal condition number 9.3271e-15
## Warning in simpleLoess(y, x, w, span, degree = degree, parametric =
## parametric, : There are other near singularities as well. 0.090619
## Computing nearest neighbor graph
## Computing SNN
## 11:10:52 UMAP embedding parameters a = 0.9922 b = 1.112
## 11:10:52 Read 34 rows and found 20 numeric columns
## 11:10:52 Using Annoy for neighbor search, n_neighbors = 10
## 11:10:52 Building Annoy index with metric = cosine, n_trees = 50
## 0% 10 20 30 40 50 60 70 80 90 100%
## [----|----|----|----|----|----|----|----|----|----|
## **************************************************|
## 11:10:52 Writing NN index file to temp file /var/folders/hw/8pgn_gss7tj01n1jg_zl_sx00000gp/T//RtmpbYWP8K/file1bca7ba7180e
## 11:10:52 Searching Annoy index using 1 thread, search_k = 1000
## 11:10:52 Annoy recall = 100%
## 11:10:53 Commencing smooth kNN distance calibration using 1 thread
## 11:10:53 Initializing from normalized Laplacian + noise
## 11:10:53 Commencing optimization for 500 epochs, with 406 positive edges
## 11:10:54 Optimization finished
## [1] "Trying 0.1"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 34
## Number of edges: 561
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.9000
## Number of communities: 1
## Elapsed time: 0 seconds
## [1] "noclusterfound 0.1"
## [1] "Trying 0.2"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 34
## Number of edges: 561
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.8000
## Number of communities: 1
## Elapsed time: 0 seconds
## [1] "noclusterfound 0.2"
## [1] "Trying 0.3"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 34
## Number of edges: 561
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.7000
## Number of communities: 1
## Elapsed time: 0 seconds
## [1] "noclusterfound 0.3"
## [1] "Trying 0.4"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 34
## Number of edges: 561
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.6000
## Number of communities: 1
## Elapsed time: 0 seconds
## [1] "noclusterfound 0.4"
## [1] "Trying 0.5"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 34
## Number of edges: 561
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.5165
## Number of communities: 2
## Elapsed time: 0 seconds
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.83174195061659, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.83174195061659, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.55416011133775, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.05276226666917, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 2.0785670335349, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 3.48027135776001, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.05276226666917, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 3.30409071735055, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 2.0785670335349, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.83174195061659, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 2.0785670335349, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.41324281139824, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 2.0785670335349, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 2.0785670335349, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.41324281139824, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.83174195061659, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.05276226666917, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.24915862336451, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 2.44143448777736, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.83174195061659, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.05276226666917, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.41324281139824, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.24915862336451, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.41324281139824, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 2.0785670335349, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.05276226666917, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.05276226666917, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.05276226666917, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.83174195061659, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.24915862336451, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.55416011133775, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.24915862336451, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.83174195061659, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.83174195061659, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 2.2763703435199, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.88656450236889, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.24915862336451, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 2.2763703435199, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.05276226666917, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 2.2763703435199, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.83174195061659, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 2.44143448777736, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.05276226666917, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.24915862336451, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.83174195061659, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.55416011133775, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.83174195061659, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.05276226666917, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.67765026257448, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.05276226666917, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 2.2763703435199, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 2.2763703435199, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.41324281139824, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.83174195061659, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 2.2763703435199, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.24915862336451, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.83174195061659, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.05276226666917, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.24915862336451, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 2.0785670335349, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 3.00720467471623, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.88656450236889, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.05276226666917, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.05276226666917, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 2.2763703435199, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.24915862336451, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.83174195061659, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 2.0785670335349, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 2.0785670335349, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.05276226666917, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.24915862336451, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.05276226666917, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 2.58307352094942, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.05276226666917, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.05276226666917, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.83174195061659, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 2.91682528434438, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.97664977241539, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 2.2763703435199, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 3.67532648770923, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.05276226666917, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 2.44143448777736, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.05276226666917, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 2.0785670335349, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.24915862336451, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.83174195061659, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 2.44143448777736, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 3.16662513452432, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 2.2763703435199, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.05276226666917, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.05276226666917, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.55416011133775, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 2.0785670335349, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 2.0785670335349, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.83174195061659, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.24915862336451, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.05276226666917, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.05276226666917, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.97664977241539, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.41324281139824, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.05276226666917, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 2.70711736521367, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 2.2763703435199, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.83174195061659, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 2.0785670335349, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 2.0785670335349, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.05276226666917, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.24915862336451, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.05276226666917, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 2.0785670335349, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 2.0785670335349, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.05276226666917, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 2.2763703435199, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 2.2763703435199, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 2.44143448777736, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.05276226666917, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 2.0785670335349, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.05276226666917, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.24915862336451, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.05276226666917, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.05276226666917, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.83174195061659, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.83174195061659, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.24915862336451, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 2.0785670335349, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.83174195061659, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.24915862336451, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 2.0785670335349, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.83174195061659, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.05276226666917, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.05276226666917, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.05276226666917, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.83174195061659, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 2.44143448777736, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.83174195061659, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.24915862336451, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.24915862336451, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.83174195061659, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.67765026257448, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.05276226666917, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 2.0785670335349, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 2.0785670335349, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.78755313483902, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.05276226666917, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.83174195061659, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.24915862336451, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.24915862336451, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.05276226666917, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.24915862336451, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.05276226666917, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.05276226666917, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 2.2763703435199, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 2.70711736521367, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.05276226666917, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.05276226666917, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.83174195061659, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.05276226666917, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.55416011133775, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.24915862336451, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.83174195061659, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.83174195061659, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.83174195061659, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.05276226666917, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.24915862336451, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.24915862336451, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.24915862336451, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.24915862336451, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.83174195061659, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.41324281139824, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 2.81745845764847, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.05276226666917, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.67765026257448, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.83174195061659, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.24915862336451, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.05276226666917, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.83174195061659, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.24915862336451, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.83174195061659, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.24915862336451, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.83174195061659, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.83174195061659, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.83174195061659, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.05276226666917, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.24915862336451, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.83174195061659, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.83174195061659, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.05276226666917, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 3.53271626102922, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.83174195061659, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.83174195061659, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.05276226666917, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 2.2763703435199, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 2.0785670335349, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.83174195061659, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.83174195061659, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 2.0785670335349, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.24915862336451, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.05276226666917, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 2.0785670335349, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.83174195061659, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.83174195061659, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.05276226666917, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.83174195061659, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.24915862336451, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.83174195061659, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.67765026257448, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.83174195061659, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.05276226666917, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.24915862336451, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.05276226666917, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 2.2763703435199, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 3.23771816674866, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 2.70711736521367, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 3.00720467471623, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 2.0785670335349, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.24915862336451, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 5.08660300771975, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 5.53928709717912, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 2.70711736521367, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 2.0785670335349, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 2.91682528434438, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 3.42492301371587, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.05276226666917, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 2.2763703435199, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 2.0785670335349, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 2.58307352094942, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.24915862336451, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 5.84976804236546, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 2.0785670335349, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.41324281139824, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.05276226666917, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.05276226666917, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 2.2763703435199, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.24915862336451, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.55416011133775, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 2.0785670335349, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.83174195061659, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.50330009397771, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 1.01096498160935, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.67765026257448, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.05276226666917, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.05276226666917, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 2.0785670335349, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.483568629009751, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 1.41324281139824, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 3.30409071735055, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AACTCCCTCCGGCACA = 0, ACTTACTTCTTCCTTC =
## 0.808127960124702, : cannot compute exact p-value with ties
## [1] NA
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.84897736262192, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.05005742007435, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.41009845279726, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 2.4601560412261, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 2.04013517175319, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.84897736262192, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.24619485868139, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 2.91225755907975, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.84897736262192, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.05005742007435, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.78409246799572, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.05005742007435, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.55088261205285, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.05005742007435, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.05005742007435, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 2.04013517175319, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.41009845279726, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.05005742007435, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.05005742007435, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.61243128648877, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.24619485868139, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.55088261205285, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.05005742007435, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.05005742007435, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.05005742007435, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.24619485868139, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.84897736262192, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.41009845279726, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.05005742007435, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.41009845279726, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.41009845279726, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.84897736262192, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.05005742007435, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.05005742007435, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 2.04013517175319, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.24619485868139, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 3.50013474336924, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.84897736262192, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.05005742007435, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.61243128648877, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.05005742007435, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.67427054439165, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.61243128648877, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.88303814371871, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 2.04013517175319, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.61243128648877, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 2.20054999607766, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.24619485868139, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.41009845279726, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.61243128648877, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.05005742007435, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.61243128648877, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.41009845279726, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.05005742007435, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 2.76395919943899, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.05005742007435, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.61243128648877, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.61243128648877, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.55088261205285, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.84897736262192, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.05005742007435, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.61243128648877, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.05005742007435, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 3.38393252728351, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.61243128648877, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.41009845279726, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.05005742007435, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.61243128648877, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 2.44474585324668, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.05005742007435, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.61243128648877, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 2.13194632634068, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.55088261205285, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 2.44474585324668, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.41009845279726, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.05005742007435, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 2.04013517175319, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.05005742007435, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.24619485868139, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.61243128648877, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.05005742007435, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.84897736262192, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.67427054439165, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 2.04013517175319, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 2.66606764759797, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 2.0556596178288, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 2.04013517175319, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.05005742007435, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.41009845279726, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 2.20054999607766, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.41009845279726, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 2.56840245634615, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 2.04013517175319, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 2.0556596178288, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.61243128648877, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 2.0556596178288, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 2.20054999607766, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.05005742007435, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.61243128648877, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.24619485868139, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.61243128648877, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 2.04013517175319, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 2.56840245634615, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.05005742007435, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.05005742007435, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.84897736262192, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.24619485868139, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.05005742007435, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.61243128648877, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 2.20282360390228, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.61243128648877, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.61243128648877, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.05005742007435, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.24619485868139, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.67427054439165, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.61243128648877, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.05005742007435, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 2.04013517175319, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.61243128648877, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.84897736262192, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.05005742007435, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.05005742007435, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.84897736262192, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.05005742007435, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.24619485868139, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 2.20054999607766, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.24619485868139, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 2.04013517175319, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.05005742007435, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.24619485868139, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.55088261205285, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.41009845279726, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.41009845279726, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 2.20282360390228, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.61243128648877, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.41009845279726, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.55088261205285, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.05005742007435, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 2.04013517175319, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 2.04013517175319, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.61243128648877, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.61243128648877, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.24619485868139, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.24619485868139, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 2.4601560412261, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.24619485868139, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.05005742007435, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.61243128648877, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.05005742007435, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.05005742007435, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 2.04013517175319, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.05005742007435, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.55088261205285, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.24619485868139, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 2.26900807245912, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.97306903696426, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.24619485868139, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.84897736262192, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.41009845279726, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.05005742007435, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.41009845279726, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.24619485868139, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.84897736262192, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.84897736262192, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.61243128648877, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.05005742007435, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.61243128648877, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.05005742007435, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.61243128648877, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.61243128648877, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.61243128648877, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.84897736262192, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.05005742007435, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.61243128648877, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.61243128648877, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.05005742007435, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.41009845279726, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.05005742007435, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 2.04013517175319, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 2.4601560412261, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.84897736262192, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.24619485868139, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.61243128648877, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.61243128648877, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.24619485868139, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.24619485868139, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.61243128648877, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.24619485868139, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.67427054439165, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 2.04013517175319, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.67427054439165, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.84897736262192, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.05005742007435, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.61243128648877, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.41009845279726, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.24619485868139, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.78409246799572, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 2.04013517175319, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.61243128648877, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.05005742007435, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 4.15177106184973, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.05005742007435, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.61243128648877, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.05005742007435, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.84897736262192, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 2.04013517175319, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.05005742007435, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.84897736262192, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.05005742007435, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.84897736262192, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.61243128648877, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.84897736262192, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.61243128648877, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 2.83673403171147, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 2.20054999607766, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 2.04013517175319, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.55088261205285, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.24619485868139, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.84897736262192, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 2.04013517175319, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.24619485868139, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.05005742007435, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.61243128648877, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.84897736262192, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 2.04013517175319, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.61243128648877, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.05005742007435, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.84897736262192, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.05005742007435, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.67427054439165, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.61243128648877, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.05005742007435, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.05005742007435, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.88303814371871, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.05005742007435, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.97306903696426, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.05005742007435, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.61243128648877, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.61243128648877, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 2.04013517175319, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 2.13194632634068, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.55088261205285, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.05005742007435, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.61243128648877, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.61243128648877, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.84897736262192, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.61243128648877, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.05005742007435, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 2.04013517175319, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.61243128648877, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.24619485868139, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.05005742007435, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.05005742007435, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.41009845279726, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.05005742007435, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.61243128648877, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.41009845279726, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.84897736262192, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.61243128648877, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.55088261205285, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.05005742007435, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0.849436898635953, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 1.30200460322858, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.805825419049015, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 1.05005742007435, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0, : cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 2.98247562632477, :
## cannot compute exact p-value with ties
## Warning in wilcox.test.default(x = c(AGAGTGGTCTACTCAT = 0, AGGTCATTCAGCACAT =
## 0.481976502759789, : cannot compute exact p-value with ties
## [1] NA
## [1] "broke 0.5"
## [1] 0.4
## Warning: The following arguments are not used: pc.use
## Warning: The following arguments are not used: pc.use
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 34
## Number of edges: 561
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.6000
## Number of communities: 1
## Elapsed time: 0 seconds
## [1] "clustering 8"
## Warning in simpleLoess(y, x, w, span, degree = degree, parametric =
## parametric, : pseudoinverse used at -1.4671
## Warning in simpleLoess(y, x, w, span, degree = degree, parametric =
## parametric, : neighborhood radius 0.4971
## Warning in simpleLoess(y, x, w, span, degree = degree, parametric =
## parametric, : reciprocal condition number 1.6044e-14
## Warning in simpleLoess(y, x, w, span, degree = degree, parametric =
## parametric, : There are other near singularities as well. 0.090619
## Computing nearest neighbor graph
## Computing SNN
## 11:11:05 UMAP embedding parameters a = 0.9922 b = 1.112
## 11:11:05 Read 28 rows and found 20 numeric columns
## 11:11:05 Using Annoy for neighbor search, n_neighbors = 10
## 11:11:05 Building Annoy index with metric = cosine, n_trees = 50
## 0% 10 20 30 40 50 60 70 80 90 100%
## [----|----|----|----|----|----|----|----|----|----|
## **************************************************|
## 11:11:05 Writing NN index file to temp file /var/folders/hw/8pgn_gss7tj01n1jg_zl_sx00000gp/T//RtmpbYWP8K/file1bca171c7e8e
## 11:11:05 Searching Annoy index using 1 thread, search_k = 1000
## 11:11:05 Annoy recall = 100%
## 11:11:05 Commencing smooth kNN distance calibration using 1 thread
## 11:11:06 Initializing from normalized Laplacian + noise
## 11:11:06 Commencing optimization for 500 epochs, with 326 positive edges
## 11:11:06 Optimization finished
## [1] "Trying 0.1"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 28
## Number of edges: 378
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.9000
## Number of communities: 1
## Elapsed time: 0 seconds
## [1] "noclusterfound 0.1"
## [1] "Trying 0.2"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 28
## Number of edges: 378
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.8000
## Number of communities: 1
## Elapsed time: 0 seconds
## [1] "noclusterfound 0.2"
## [1] "Trying 0.3"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 28
## Number of edges: 378
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.7000
## Number of communities: 1
## Elapsed time: 0 seconds
## [1] "noclusterfound 0.3"
## [1] "Trying 0.4"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 28
## Number of edges: 378
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.6000
## Number of communities: 1
## Elapsed time: 0 seconds
## [1] "noclusterfound 0.4"
## [1] "Trying 0.5"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 28
## Number of edges: 378
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.5000
## Number of communities: 1
## Elapsed time: 0 seconds
## [1] "noclusterfound 0.5"
## [1] "Trying 0.6"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 28
## Number of edges: 378
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.4000
## Number of communities: 1
## Elapsed time: 0 seconds
## [1] "noclusterfound 0.6"
## [1] "Trying 0.7"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 28
## Number of edges: 378
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.3000
## Number of communities: 1
## Elapsed time: 0 seconds
## [1] "noclusterfound 0.7"
## [1] "noclusterfound 0.7"
## Warning: The following arguments are not used: pc.use
## Warning: The following arguments are not used: pc.use
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 28
## Number of edges: 378
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.9000
## Number of communities: 1
## Elapsed time: 0 seconds
## [1] "clustering 9"
## Warning in simpleLoess(y, x, w, span, degree = degree, parametric =
## parametric, : pseudoinverse used at -1.0414
## Warning in simpleLoess(y, x, w, span, degree = degree, parametric =
## parametric, : neighborhood radius 0.30103
## Warning in simpleLoess(y, x, w, span, degree = degree, parametric =
## parametric, : reciprocal condition number 5.7987e-15
## Computing nearest neighbor graph
## Computing SNN
## 11:11:07 UMAP embedding parameters a = 0.9922 b = 1.112
## 11:11:07 Read 22 rows and found 20 numeric columns
## 11:11:07 Using Annoy for neighbor search, n_neighbors = 10
## 11:11:07 Building Annoy index with metric = cosine, n_trees = 50
## 0% 10 20 30 40 50 60 70 80 90 100%
## [----|----|----|----|----|----|----|----|----|----|
## **************************************************|
## 11:11:07 Writing NN index file to temp file /var/folders/hw/8pgn_gss7tj01n1jg_zl_sx00000gp/T//RtmpbYWP8K/file1bca4fb8a87c
## 11:11:07 Searching Annoy index using 1 thread, search_k = 1000
## 11:11:07 Annoy recall = 100%
## 11:11:08 Commencing smooth kNN distance calibration using 1 thread
## 11:11:08 Initializing from normalized Laplacian + noise
## 11:11:08 Commencing optimization for 500 epochs, with 262 positive edges
## 11:11:09 Optimization finished
## [1] "Trying 0.1"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 22
## Number of edges: 231
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.9000
## Number of communities: 1
## Elapsed time: 0 seconds
## [1] "noclusterfound 0.1"
## [1] "Trying 0.2"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 22
## Number of edges: 231
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.8000
## Number of communities: 1
## Elapsed time: 0 seconds
## [1] "noclusterfound 0.2"
## [1] "Trying 0.3"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 22
## Number of edges: 231
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.7000
## Number of communities: 1
## Elapsed time: 0 seconds
## [1] "noclusterfound 0.3"
## [1] "Trying 0.4"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 22
## Number of edges: 231
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.6000
## Number of communities: 1
## Elapsed time: 0 seconds
## [1] "noclusterfound 0.4"
## [1] "Trying 0.5"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 22
## Number of edges: 231
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.5000
## Number of communities: 1
## Elapsed time: 0 seconds
## [1] "noclusterfound 0.5"
## [1] "Trying 0.6"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 22
## Number of edges: 231
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.4000
## Number of communities: 1
## Elapsed time: 0 seconds
## [1] "noclusterfound 0.6"
## [1] "Trying 0.7"
## Computing nearest neighbor graph
## Computing SNN
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 22
## Number of edges: 231
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.3000
## Number of communities: 1
## Elapsed time: 0 seconds
## [1] "noclusterfound 0.7"
## [1] "noclusterfound 0.7"
## Warning: The following arguments are not used: pc.use
## Warning: The following arguments are not used: pc.use
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
##
## Number of nodes: 22
## Number of edges: 231
##
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.9000
## Number of communities: 1
## Elapsed time: 0 seconds
# save file
saveRDS(tenx_labeled, file = paste(output_folder,'/', proj_name, "_labeled.rds", sep = ''))
# load updated file
tenx_labeled <- readRDS(paste(output_folder,'/', proj_name, "_labeled.rds", sep = ''))
now that cellfindr has finished running you can get the special matrix data by running the get_analysis tool getting the stats files, the matrice files as well as the data qualities violin plots.
get_analysis(tenx_labeled, output_folder, proj_name)
## [1] "getting matrix"
## Warning: 'use.scale' is a deprecated argument, please use the 'slot' argument
## instead
## Finished averaging RNA for cluster 0
## Finished averaging RNA for cluster 1.0.0
## Finished averaging RNA for cluster 1.0.1
## Finished averaging RNA for cluster 1.1
## Finished averaging RNA for cluster 1.2
## Finished averaging RNA for cluster 2.0
## Finished averaging RNA for cluster 2.1
## Finished averaging RNA for cluster 3
## Finished averaging RNA for cluster 4
## Finished averaging RNA for cluster 5
## Finished averaging RNA for cluster 6
## Finished averaging RNA for cluster 7
## Finished averaging RNA for cluster 8
## Finished averaging RNA for cluster 9
## [1] "0"
## [1] "1.0.0"
## [1] "1.0.1"
## [1] "1.1"
## [1] "1.2"
## [1] "2.0"
## [1] "2.1"
## [1] "3"
## [1] "4"
## [1] "5"
## [1] "6"
## [1] "7"
## [1] "8"
## [1] "9"
## [1] "0"
## [1] "1.0.0"
## [1] "1.0.1"
## [1] "1.1"
## [1] "1.2"
## [1] "2.0"
## [1] "2.1"
## [1] "3"
## [1] "4"
## [1] "5"
## [1] "6"
## [1] "7"
## [1] "8"
## [1] "9"
## [1] "getting matrix"
## Warning: 'use.scale' is a deprecated argument, please use the 'slot' argument
## instead
## Finished averaging RNA for cluster 0
## Finished averaging RNA for cluster 1
## Finished averaging RNA for cluster 2
## Finished averaging RNA for cluster 3
## Finished averaging RNA for cluster 4
## Finished averaging RNA for cluster 5
## Finished averaging RNA for cluster 6
## Finished averaging RNA for cluster 7
## Finished averaging RNA for cluster 8
## Finished averaging RNA for cluster 9
## [1] "0"
## [1] "1"
## [1] "2"
## [1] "3"
## [1] "4"
## [1] "5"
## [1] "6"
## [1] "7"
## [1] "8"
## [1] "9"
## [1] "0"
## [1] "1"
## [1] "2"
## [1] "3"
## [1] "4"
## [1] "5"
## [1] "6"
## [1] "7"
## [1] "8"
## [1] "9"